UNPKG

@hhgtech/hhg-components

Version:
16 lines (15 loc) 463 B
import React from 'react'; import { LocaleType, SiteType } from "../../../interfaces/types"; type Props = { locale?: LocaleType; onSubmit?: (info: { startDate: Date; cycle: number; periodLength: number; }) => void; isSide?: boolean; siteType?: SiteType; pageUrl?: string; }; declare const OvulationForm: ({ locale, onSubmit, isSide, siteType }: Props) => React.JSX.Element; export { OvulationForm };