@hhgtech/hhg-components
Version:
Hello Health Group common components
11 lines (10 loc) • 497 B
TypeScript
/// <reference types="react" />
import { UseFormReturnType } from '@mantine/form';
import { ButtonProps } from "../../../../../mantine";
import { BabyVaccineFormValue } from "./";
export type BabyVaccineFormContextType = {
form: UseFormReturnType<BabyVaccineFormValue, (values: BabyVaccineFormValue) => BabyVaccineFormValue>;
submitProps?: ButtonProps;
currentUrl?: string;
};
export declare const BabyVaccineFormContext: import("react").Context<BabyVaccineFormContextType>;