import React from 'react';
import { BabyVaccineFormProps } from "../../healthTools/form/babyVaccineForm";
import { HealthToolFormWrapperProps } from "../../healthTools/formWrapper";
export type Props = {
    babyVaccineContent?: any;
    formProps?: BabyVaccineFormProps;
} & HealthToolFormWrapperProps;
export declare const BabyVaccineCardEmbed: ({ babyVaccineContent, formProps, ...props }: Props) => React.JSX.Element;
