import React, { PropsWithChildren } from 'react'; import { HuiThemes } from '../themes/presets'; export interface Props { themeType?: string; themes?: Array; } declare const ThemeProvider: React.FC>; export default ThemeProvider;