import * as React from "react"; import { AccountState } from "../../reducers/wallet"; interface Props { selectedAccount: AccountState | null; isShowWalletModal: boolean; walletTranslations: { [key: string]: any; }; dispatch: any; notAllowClick?: boolean; } declare class WalletButton extends React.PureComponent { render(): JSX.Element; private handleClick; private toggleText; } declare const _default: import("react-redux").ConnectedComponent & Props, "ref" | "key" | "notAllowClick">>; export default _default;