/** * Dynamically loads KaTeX CSS at runtime to avoid Next.js-style * "Global CSS cannot be imported from within node_modules" build errors and * to keep the CSS out of the static import graph. * * Uses a module-level singleton flag so the stylesheet is only loaded once, * regardless of how many components call this composable. * * Mirrors the React `useKatexStyles` hook: returns `void`, never throws, and * logs a warning with equivalent intent if the dynamic import fails. * * @example * ```vue * * ``` */ export declare function useKatexStyles(): void; //# sourceMappingURL=use-katex-styles.d.ts.map