import { BareProps } from './types'; import BN from 'bn.js'; import React from 'react'; import { AccountId, AccountIndex, Address } from '@polkadot/types'; export declare type Props = BareProps & { bonded?: BN | Array; label?: React.ReactNode; params?: AccountId | AccountIndex | Address | string | Uint8Array | null; withLabel?: boolean; }; export default class BondedDisplay extends React.PureComponent { render(): JSX.Element | null; private renderProvided; }