import { ReactNode } from "react";
import type { Chain } from "@turnkey/core";
interface WalletButtonProps {
    icon: string | ReactNode;
    name: string;
    chains: Array<{
        namespace: Chain;
        isConnected: boolean;
    }>;
    onClick: () => void;
    shouldShowDisconnect?: boolean;
    isMobile?: boolean;
}
export declare function WalletButton(props: WalletButtonProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=WalletButton.d.ts.map