/** * Converts Markdown text to Notion's rich text format. * This function handles basic Markdown formatting: bold, italic, links, code. * * @param markdownContent The markdown content to convert * @returns An array of rich text objects for Notion API */ export declare function markdownToRichText(markdownContent: string): any[];