import React, { PropsWithChildren } from 'react'; import { KubedTheme } from './types'; export interface Props { themeType?: string; themes?: Array; } declare function ThemeProvider({ children, themeType, themes }: PropsWithChildren): React.JSX.Element; export default ThemeProvider; //# sourceMappingURL=ThemeProvider.d.ts.map