import { type ReactNode } from 'react'; export type ThemeProps = { withFonts?: boolean; children: ReactNode; }; export declare function ThemeProvider({ children, withFonts }: ThemeProps): import("react/jsx-runtime").JSX.Element;