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