import React from 'react';
import { BabyGrowthFormProps } from "../../../babyGrowth/babyGrowthForm";
import { BabyGrowthContent } from "../../../../types";
import { HealthToolFormWrapperProps } from "../../healthTools/formWrapper";
export type BabyGrowthCardEmbedProps = {
    babyGrowthContent: BabyGrowthContent | null;
    formProps?: BabyGrowthFormProps;
} & HealthToolFormWrapperProps;
export declare const BabyGrowthCardEmbed: ({ babyGrowthContent, formProps, ...props }: BabyGrowthCardEmbedProps) => React.JSX.Element;
