import type { NumberFormatAllProps, NumberFormatProps } from './NumberFormatBase';
export type NumberFormatNumberProps = Omit<NumberFormatAllProps, 'currency' | 'currencyDisplay' | 'currencyPosition' | 'compact'> & {
    /** Compact display: `short` (e.g., 1.2K), `long` (e.g., 1.2 thousand) or `true` for short. */
    compact?: NumberFormatProps['compact'];
};
declare const NumberFormatNumber: {
    (props: NumberFormatNumberProps): import("react/jsx-runtime").JSX.Element;
    displayName: string;
};
export default NumberFormatNumber;
