interface PageCounter { getPageCount: (content: string) => Promise; destroy: () => void; } export declare const splitContentIntoPrintSections: (content: string) => string[]; export declare const createPageCounter: () => PageCounter; export declare const handlePrint: (slides: string[]) => void; export declare const handleContentPrint: (content: string) => void; export {};