import { ButtonProps } from '@mui/material'; export type ConnectionInfoButtonProps = { onlyShowChain?: boolean; onlyShowAccount?: boolean; size?: 'small' | 'medium' | 'large'; /** * Chain name to display * @default "shortName" */ chainNameMode?: 'shortName' | 'name'; } & ButtonProps; /** * This component is used to display the current connected wallet and chain network * When clicked, it will open the connection info modal where user can view their wallet information and switch network */ export declare const ConnectionInfoButton: ({ onlyShowChain, onlyShowAccount, chainNameMode, ...props }: ConnectionInfoButtonProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=ConnectionInfoButton.d.ts.map