UNPKG

@hhgtech/hhg-components

Version:
17 lines (16 loc) 605 B
import React from 'react'; import { LocaleType, SiteType } from "../../../interfaces/types"; import { OvulationInfoType } from "../embeddedHeathToolCards/ovulation/ovulation"; export declare enum OvulationCalculatorType { trackPeriod = 0, conceive = 1, avoidPregnancy = 2 } export type Props = { locale?: LocaleType; onSubmitOvulation?: (info: OvulationInfoType) => void; isSide?: boolean; siteType?: SiteType; }; declare const OvulationCalculator: ({ locale, onSubmitOvulation, isSide, siteType, }: Props) => React.JSX.Element; export { OvulationCalculator };