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