import * as React from "react"; interface Props { walletType: string; selectedAccountID: string | null; accounts: any; dispatch: any; walletTranslations: { [key: string]: any; }; unit: string; decimals: number; selectedAccountAddress: string | null; copyCallback?: (text: string) => any; } interface State { } declare class WalletSelector extends React.PureComponent { render(): JSX.Element; private getOptions; private getWalletAccounts; } declare const _default: import("react-redux").ConnectedComponent & Props, "ref" | "key" | "walletType" | "copyCallback">>; export default _default;