import React from 'react';
import { OvulationInfoApi } from "../../../../together/interfaces/types";
import { OvulationFormProps } from "../../healthTools/form/ovulationForm";
import { HealthToolFormWrapperProps } from "../../healthTools/formWrapper";
import { OvulationCalculatorType } from "../../ovulationCalculator";
export type Props = {
    ovulationPageInfo?: OvulationInfoApi;
    isMobile?: boolean;
    isSide?: boolean;
    expertUrl?: string;
    formProps?: OvulationFormProps;
} & HealthToolFormWrapperProps;
export type OvulationInfoType = {
    method: OvulationCalculatorType;
    periodDateStart: Date;
    cycle: number;
    periodLength: number;
};
export declare const OvulationCardEmbed: ({ ovulationPageInfo, expertUrl, formProps, isMobile, ...props }: Props) => React.JSX.Element;
