import React from 'react';
export interface AccountModalProps {
    open: boolean;
    onClose: () => void;
}
export declare function AccountModal({ onClose, open }: AccountModalProps): React.JSX.Element | null;
