export declare const NUMBER_VARIANTS: { readonly EXPANDED_AUTO_FORMAT: "expandedAutoFormat"; readonly COMPACT_AUTO_FORMAT: "compactAutoFormat"; readonly EXPANDED_DECIMAL_FORMAT: "expandedDecimalFormat"; readonly COMPACT_DECIMAL_FORMAT: "compactDecimalFormat"; }; export declare type ExpandedAutoFormat = { type: typeof NUMBER_VARIANTS.EXPANDED_AUTO_FORMAT; }; export declare type CompactAutoFormat = { type: typeof NUMBER_VARIANTS.COMPACT_AUTO_FORMAT; }; export declare type ExpandedDecimalFormat = { type: typeof NUMBER_VARIANTS.EXPANDED_DECIMAL_FORMAT; decimalDigits: number; }; export declare type CompactDecimalFormat = { type: typeof NUMBER_VARIANTS.COMPACT_DECIMAL_FORMAT; decimalDigits: number; }; export declare type NumberVariant = ExpandedAutoFormat | CompactAutoFormat | ExpandedDecimalFormat | CompactDecimalFormat;