import { ButtonProps } from '@mui/material'; import React from 'react'; export type WalletConnectButtonProps = { /** * Display Disconnect Wallet button after connected */ allowDisconnect?: boolean; } & ButtonProps; /** * Button component to connect wallet. Use MUI Button */ export declare const WalletConnectButton: React.MemoExoticComponent<({ allowDisconnect, ...props }: WalletConnectButtonProps) => import("react/jsx-runtime").JSX.Element>; //# sourceMappingURL=WalletConnectButton.d.ts.map