import React from 'react';
export interface ConnectModalProps {
    /** Shows only a list of available wallets to connect (ignoring other web2 options) */
    walletsOnly?: boolean;
    open: boolean;
    onClose: () => void;
}
export declare function ConnectModal({ onClose, open, walletsOnly, }: ConnectModalProps): React.JSX.Element | null;
