/** * Append markdown content to an existing Notion page * @param pageId The ID of the page to append content to * @param markdownContent The markdown content to append * @returns A confirmation message */ export declare const handler: (pageId: string, markdownContent: string) => Promise;