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