import React from 'react';
import { BoxProps } from '@mantine/core';
import { ButtonProps, PopoverProps } from "../../../mantine";
type Props = {
    fillInfo: {
        phone?: string;
        email?: string;
    };
    popoverProps?: PopoverProps;
    submitProps?: ButtonProps;
} & BoxProps;
export declare const Form: (props: Props) => React.JSX.Element;
export {};
