import React from 'react';
import { BabyGrowthFormField } from "../../../interfaces/types";
import { HealthToolFormWrapperProps } from "../../molecules/healthTools/formWrapper";
import { ButtonProps } from "../../../mantine";
export type BabyGrowthFormProps = {
    onSubmit: (value: BabyGrowthFormField) => void;
    currentUrl?: string;
    submitProps?: ButtonProps;
} & HealthToolFormWrapperProps;
export declare const BabyGrowthForm: ({ onSubmit, formLayout, submitProps, currentUrl, ...rest }: BabyGrowthFormProps) => React.JSX.Element;
