/** * Extracts the title from a markdown slide * Looks for the first # or ## heading in the content */ export declare function extractSlideTitle(content: string, slideIndex: number): string; /** * Extracts titles from all slides */ export declare function extractAllSlideTitles(slides: string[]): string[]; //# sourceMappingURL=extractSlideTitles.d.ts.map