UNPKG

@hhgtech/hhg-components

Version:
12 lines (11 loc) 545 B
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; } & _MantineProviderProps; export declare const MantineProvider: ({ children, locale, template, customStyleType, ...props }: MantineProviderProps) => React.JSX.Element;