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