@hhgtech/hhg-components
Version:
Hello Health Group common components
14 lines (13 loc) • 632 B
TypeScript
import React from 'react';
import { ButtonProps } from "../../../../mantine";
import { BabyPoopPage } from "../../../../../together/interfaces/types";
import { HealthToolFormWrapperProps } from "../../formWrapper";
export type BabyPoopFormProps = {
babyPoopPage: BabyPoopPage;
currentUrl?: string;
onClickFindOut?: () => void;
sponsorLogo?: string;
btnProps?: ButtonProps;
} & HealthToolFormWrapperProps;
declare const BabyPoopForm: ({ babyPoopPage, onClickFindOut, currentUrl, sponsorLogo, btnProps, styles, classNames, ...props }: BabyPoopFormProps) => React.JSX.Element;
export { BabyPoopForm };