import React from 'react';
import { DefaultProps } from '@mantine/core';
import { BabyPoopPage } from "../../../../together/interfaces/types";
import { BabyPoopFormProps } from "../../healthTools/form/babyPoopForm";
export interface BabyPoopEmbedProps extends DefaultProps {
    babyPoopPage: BabyPoopPage;
    formProps?: BabyPoopFormProps;
}
declare const BabyPoopEmbed: ({ babyPoopPage, formProps, ...props }: BabyPoopEmbedProps) => React.JSX.Element;
export { BabyPoopEmbed };
