import { MantineThemeOverride } from '@mantine/core'; import React from 'react'; /** * Props for the MantineProvider component. */ type MantineProviderProps = { /** React children elements to be rendered inside the provider */ children: any; /** Optional theme object to override the default theme */ theme?: MantineThemeOverride; }; /** * A wrapper around MantineProvider that applies a default theme if none is provided. * * @param {MantineProviderProps} props - The props for the provider. * @returns {JSX.Element} The MantineProvider component. */ export declare const MantineProvider: React.FC; export default MantineProvider;