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