import { BareProps } from './types'; import BN from 'bn.js'; import React from 'react'; declare type Props = BareProps & { autoFocus?: boolean; defaultValue?: BN | string; help?: React.ReactNode; isDisabled?: boolean; isError?: boolean; label?: any; maxValue?: BN; onChange?: (value?: BN) => void; onEnter?: () => void; placeholder?: string; value?: BN | string; withEllipsis?: boolean; withLabel?: boolean; withMax?: boolean; }; export default class InputBalance extends React.PureComponent { render(): JSX.Element; } export {};