@hhgtech/hhg-components
Version:
Hello Health Group common components
19 lines (18 loc) • 669 B
TypeScript
import React from 'react';
import { ButtonProps } from "../../../../../mantine";
import { HealthToolFormWrapperProps } from "../../formWrapper";
export declare enum OvulationCalculatorType {
trackPeriod = 0,
conceive = 1,
avoidPregnancy = 2
}
export type BabyVaccineFormValue = {
gender?: string;
age?: Date;
};
export type BabyVaccineFormProps = {
onSubmit?: (v: BabyVaccineFormValue) => void;
submitProps?: ButtonProps;
currentUrl?: string;
} & HealthToolFormWrapperProps;
export declare const BabyVaccineForm: ({ formLayout, submitProps, currentUrl, onSubmit, ...props }: BabyVaccineFormProps) => React.JSX.Element;