import React from 'react'; import { Lang, ThemeConfig } from './types'; type ThemeContextType = { theme: ThemeConfig; setTheme: (themeName: ThemeConfig) => void; lang: Lang; }; type ThemeProviderProps = { children: React.ReactNode; theme?: ThemeConfig; lang?: Lang; }; export declare const ThemeProvider: React.FC; export declare const useTheme: () => ThemeContextType; export {}; //# sourceMappingURL=ThemeProvider.d.ts.map