UNPKG

@hhgtech/hhg-components

Version:
10 lines (9 loc) 535 B
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;