@hhgtech/hhg-components
Version:
Hello Health Group common components
13 lines (12 loc) • 590 B
TypeScript
import React from 'react';
import type { PillCarouselProps } from "../../molecules/pillCarousel";
import { ChartProps } from "./components/chart";
import { SiteType } from "../../navigationV2/types";
export type PregnancyWeightGainChartProps = {
chartProps: ChartProps;
pillCarouselProps: PillCarouselProps;
idealWeight?: string;
description?: React.ReactNode;
siteType?: SiteType;
};
export declare const PregnancyWeightGainChart: ({ chartProps, pillCarouselProps, idealWeight, description, siteType, }: PregnancyWeightGainChartProps) => React.JSX.Element;