/// export interface NumberProps { value: number; placeholder?: string; title?: string; abbrev?: boolean; prefix?: string; suffix?: string; formatOptions?: Intl.NumberFormatOptions; } export declare function Number(props: NumberProps): JSX.Element; export declare namespace Number { var defaultProps: Partial; }