import React, { PropsWithChildren } from 'react'; import { HuiThemes } from '../themes/presets'; export type HuiProviderProps = { themes?: Array; themeType?: string | 'dark' | 'light'; }; declare const HuiProvider: React.FC>; export default HuiProvider;