/// import { UseFormReturnType } from '@mantine/form'; import { BabyGrowthFormField } from "../../../interfaces/types"; import { ButtonProps } from "../../../mantine"; export type BabyGrowthFormContextType = { form: UseFormReturnType BabyGrowthFormField>; currentUrl?: string; submitProps?: ButtonProps; }; export declare const BabyGrowthFormContext: import("react").Context;