/// import { UseFormReturnType } from '@mantine/form'; import { ButtonProps } from "../../../../../mantine"; import { BabyVaccineFormValue } from "./"; export type BabyVaccineFormContextType = { form: UseFormReturnType BabyVaccineFormValue>; submitProps?: ButtonProps; currentUrl?: string; }; export declare const BabyVaccineFormContext: import("react").Context;