@hhgtech/hhg-components
Version:
Hello Health Group common components
9 lines (8 loc) • 366 B
TypeScript
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;