import React from 'react';
interface AuthDialogProps {
    isOpen: boolean;
    onClose: () => void;
    onSignIn: () => void;
    description: string;
}
declare const AuthDialog: React.FC<AuthDialogProps>;
export default AuthDialog;
