import React from 'react'; import { Themes, IThemeCustomization } from './types'; export interface IThemeProviderProps { children: React.ReactNode; dataTheme?: Themes; themes?: IThemeCustomization; shadow?: ShadowRoot | null; tailwindStyles: string; isLoading: boolean; refForShadow?: React.RefObject; withDatePickerStyles?: boolean; bgColor?: string; } declare function TailwindTheme({ themes, dataTheme, children, shadow, isLoading, refForShadow, tailwindStyles, withDatePickerStyles, bgColor, }: IThemeProviderProps): JSX.Element; declare const _default: React.MemoExoticComponent; export default _default;