/** * Add a comment to a specific block in a Notion page * @param blockId The ID of the block to add the comment to * @param commentContent The markdown content to add as a comment * @returns A confirmation message with the comment ID */ export declare const handler: (blockId: string, commentContent: string) => Promise;