import { r as SummaryStrings } from "./summary-D8UEQXYr.js"; import { n as Format } from "./format-Dq02z5ZL.js"; import { CSSProperties, ReactNode } from "react"; //#region src/core/strings-fat.d.ts type FatStrings = Pick; //#endregion //#region src/charts/fat-digits/geometry.d.ts type FatTiers = 3 | 5; //#endregion //#region src/charts/fat-digits/index.d.ts interface FatDigitsProps { value: number; /** Range that maps `value` to a weight tier (value mode). */ domain?: readonly [number, number] | undefined; /** `value` (default) weights the whole numeral; `digit` weights each digit. */ encode?: "value" | "digit" | undefined; /** Weight steps: 5 (default) or 3. */ tiers?: FatTiers | undefined; fontSize?: number | undefined; format?: Format | undefined; locale?: string | string[] | undefined; strings?: FatStrings | undefined; title?: string | undefined; summary?: string | false | undefined; id?: string | undefined; className?: string | undefined; style?: CSSProperties | undefined; children?: ReactNode | undefined; } declare function fatDigitsSummary(value: number, opts?: { encode?: "value" | "digit" | undefined; tiers?: FatTiers | undefined; domain?: readonly [number, number] | undefined; strings?: FatStrings | undefined; format?: Format | undefined; locale?: string | string[] | undefined; }): string; declare function FatDigits(props: FatDigitsProps): ReactNode; //#endregion export { FatStrings as i, FatDigitsProps as n, fatDigitsSummary as r, FatDigits as t };