export default function usePrintMode(): { processPrintContent: (content: string) => string; applyPrintModeToElement: (element: HTMLElement | null, getContent: () => string) => void; resolveAllCssVariables: (element: HTMLElement) => void; applyPrintModeToSection: (section: { id: string; theme?: any; }, sectionElement: HTMLElement, maintainTheme?: boolean) => void; getNextPrintModeIndex: (sectionListId: string) => number; resetPrintModeCounters: () => void; };