import React from 'react';
import { MantineProviderProps as _MantineProviderProps } from '@mantine/core';
import { LOCALE } from "../../../interfaces/types";
import { CustomStylesType } from "../theme/types";
export type MantineProviderProps = {
    children: React.ReactNode;
    locale: LOCALE;
    template?: 'hb' | 'mb';
    customStyleType?: CustomStylesType;
    isNotifications?: boolean;
} & _MantineProviderProps;
export declare const MantineProvider: ({ children, locale, template, isNotifications, customStyleType, ...props }: MantineProviderProps) => React.JSX.Element;
