export declare function splitIntoBlocks(markdown: string): string[]; export declare function normalizeBlockText(text: string): string; interface PageInput { url: string; markdown: string; } interface PageOutput { url: string; markdown: string; } export declare function stripRepeatedNavigationLines(pages: PageInput[]): PageInput[]; export declare function deduplicatePages(pages: PageInput[], domain?: string): PageOutput[]; export declare function getStoredBoilerplate(domain: string): string[]; export declare function storeBoilerplate(domain: string, hashes: string[]): void; export {}; //# sourceMappingURL=dedup.d.ts.map