export interface ContentSection { heading: string; depth: number; content: string; wordCount: number; } export interface ContentLink { url: string; anchor: string; section: string; } export declare function countWords(text: string): number; export declare function canonicalizeUrl(raw: string): string | null; export declare function splitSections(markdown: string): ContentSection[]; export declare function extractLinks(markdown: string, sourceUrl?: string): ContentLink[]; //# sourceMappingURL=content-splitter.d.ts.map