@hhgtech/hhg-components
Version:
Hello Health Group common components
9 lines (8 loc) • 430 B
TypeScript
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;