import { BareProps } from './types'; import BN from 'bn.js'; import React from 'react'; import { AccountId, AccountIndex, Address } from '@polkadot/types'; import { OfflineStatus } from '@polkadot/app-staking/types'; declare type Props = BareProps & { balance?: BN | Array; bonded?: BN | Array; children?: React.ReactNode; isPadded?: boolean; isShort?: boolean; value?: AccountId | AccountIndex | Address | string; offlineStatus?: Array; withAddress?: boolean; withBalance?: boolean; withBonded?: boolean; }; declare class AddressMini extends React.PureComponent { render(): JSX.Element | null; private renderAddressOrName; private renderBalance; private renderBonded; private renderOfflineStatus; } declare const _default: import("styled-components").StyledComponent; export default _default;