import { n as MicroDatum } from "../../interactive-C4bxY0ip.js"; import { i as FatStrings, n as FatDigitsProps } from "../../index-k_d9BxMp.js"; //#region src/charts/fat-digits/client.d.ts interface InteractiveFatDigitsProps extends FatDigitsProps { /** Announce changes through a polite region (default true). */ live?: boolean; strings?: FatStrings; /** * Opt-in entrance motion (default `false`): the numeral lifts and scales in * (a subtle `pop`) when the chart first mounts client-side. Inert on the * server and on hydrated server HTML; `prefers-reduced-motion` always wins. */ animate?: boolean; /** * The active (hovered / keyboard-focused) unit changed. One numeral = one unit, * so this fires once with `{ index: 0, … }` on pointer enter or focus and once * with `null` when that clears — never repeatedly while the pointer moves * inside the numeral, and never twice when hover and focus overlap. */ onActive?: ((datum: MicroDatum | null) => void) | undefined; /** Click/tap or Enter/Space — `{ index: 0, value: the numeral }`. */ onSelect?: ((datum: MicroDatum | null) => void) | undefined; } declare function FatDigits(props: InteractiveFatDigitsProps): React.ReactNode; //#endregion export { FatDigits, InteractiveFatDigitsProps };