import { ReactNode, ReactElement } from 'react'; interface ThemeProviderProps { children: ReactNode; } declare const ThemeProvider: (props: ThemeProviderProps) => ReactElement; export type { ThemeProviderProps }; export { ThemeProvider };