UNPKG

@hhgtech/hhg-components

Version:
10 lines (9 loc) 435 B
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;