export interface NotionMarkdownSection { heading: string | null; headingLevel: number | null; markdown: string; } export interface NotionMarkdownResult { markdown: string; sections: NotionMarkdownSection[]; } export declare function notionBlocksToMarkdown(blocks: readonly unknown[]): NotionMarkdownResult; export declare function notionBlockToMarkdown(block: Record, type?: string): string; //# sourceMappingURL=notion.d.ts.map