import * as react_jsx_runtime from 'react/jsx-runtime';
import { Themes } from '@raiadrogasil/pulso-design-tokens';

interface IThemeProviderProps {
    children: React.ReactNode;
    theme: Themes;
}
declare function ThemeProvider({ children, theme }: IThemeProviderProps): react_jsx_runtime.JSX.Element;

export { ThemeProvider };
