import * as react_jsx_runtime from 'react/jsx-runtime';
import { WalletSortingOptions } from '@aptos-labs/wallet-adapter-react';
import { Breakpoint } from '@mui/material';

interface WalletConnectorProps extends WalletSortingOptions {
    networkSupport?: string;
    handleNavigate?: () => void;
    /** The max width of the wallet selector modal. Defaults to `xs`. */
    modalMaxWidth?: Breakpoint;
}
declare function WalletConnector({ networkSupport, handleNavigate, modalMaxWidth, ...walletSortingOptions }: WalletConnectorProps): react_jsx_runtime.JSX.Element;

export { WalletConnector, type WalletConnectorProps };
