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;
