import { AmountBase, type AmountProps } from './Amount';
export type NumberProps = AmountProps;
/**
 * Stat.Number — A general-purpose formatted number display.
 *
 * Supports plain numbers, currencies, percentages, and custom formatting.
 */
declare const Number: typeof AmountBase;
export default Number;
