import type { NotionComment, NotionDiscussion } from "./triggers" export type GetPageDiscussions = (args: { pageUrl: string includeResolved?: boolean }) => Promise> export type AddCommentToDiscussion = (args: { discussionUrl: string text: string attachedFileIds?: Array }) => Promise