import { MantineTheme, MantineThemeOverride } from '@mantine/core'; import React from 'react'; export interface ThemeProviderProps { children?: React.ReactNode; theme?: MantineThemeOverride; } export declare const globalStyles: (theme: MantineTheme) => { body: { backgroundColor: string; }; }; export declare function ThemeProvider(props: ThemeProviderProps): import("react/jsx-runtime").JSX.Element; export declare namespace ThemeProvider { var defaultProps: { colorScheme: string; }; }