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 };