import React from 'react';
import { SignUpFormProps } from '../components/Form/SignUpForm';
export interface SignUpPopup extends SignUpFormProps {
    onSwitchAuth: () => void;
    /**
     * If true, the close button will be displayed
     * @default false
     * @optional
     */
    showCloseButton?: boolean;
}
export declare const SignUpPopup: React.FC<SignUpPopup>;
