export interface FormattedNumberProps { /** Value to format. */ value: number; /** Whether to shorten the number if it gets too big. For example, "9k" instead of "9.231". */ compact?: boolean; } declare const _default: import("react").MemoExoticComponent; export default _default; declare function FormattedNumber({ value, compact }: FormattedNumberProps): string;