UNPKG

@hhgtech/hhg-components

Version:
9 lines (8 loc) 366 B
import React from 'react'; import { CustomStylesType } from "../../../mantine"; export type TemplateProviderProps = { variant?: CustomStylesType; children: React.ReactNode; }; export declare const TemplateProvider: ({ variant, children, }: TemplateProviderProps) => React.JSX.Element; export declare const useTemplateVariant: () => CustomStylesType;