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