UNPKG

@hhgtech/hhg-components

Version:
11 lines (10 loc) 497 B
/// <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>;