import { ButtonProps } from '../../base/components/Button'; import { Action } from '../../types'; import { default as React } from 'react'; import { ConnectButtonRenderer } from './ConnectButtonRenderer'; export interface WalletButtonProps extends ButtonProps { action?: Action; } declare const WalletButton: React.ForwardRefExoticComponent>; type WalletButtonType = typeof WalletButton & { Custom: typeof ConnectButtonRenderer; }; declare const ConnectButton: WalletButtonType; export { type WalletButtonType as ConnectButtonProps, ConnectButton };