import { AccountId, AccountIndex, Address } from '@polkadot/types'; import { BareProps } from './types'; import React from 'react'; declare type Props = BareProps & { accountId: AccountId | AccountIndex | Address | string | Uint8Array | null; label?: string; }; export default class CryptoType extends React.PureComponent { render(): JSX.Element; } export {};