/// <reference types="react" />
import { UseFormReturnType } from '@mantine/form';
import { ButtonProps } from "../../../../../mantine";
import { ThrFormValue } from "./";
export type ThrFormContextType = {
    isAdult: boolean;
    activeValueNote: {
        value: string;
        label: string;
        image: string;
        imageActive: string;
        content: string;
    }[];
    linkTool: string;
    form: UseFormReturnType<ThrFormValue, (values: ThrFormValue) => ThrFormValue>;
    submitProps?: ButtonProps;
};
export declare const ThrFormContext: import("react").Context<ThrFormContextType>;
