/// <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>;
