import * as react_jsx_runtime from 'react/jsx-runtime'; interface ITheme { [key: string]: string; } interface IThemes { [key: string]: ITheme; } /** * The default theme to load */ declare const DEFAULT_THEME: string; declare const themes: IThemes; type Props = { children: React.ReactNode; theme?: ITheme; }; declare const ThemeProvider: (props: Props) => react_jsx_runtime.JSX.Element; export { DEFAULT_THEME, ThemeProvider, themes };