import { n as MicroDatum } from "../../interactive-C4bxY0ip.js"; import { t as ScalarStrings } from "../../strings-scalar-C_B3azW6.js"; import { ProgressRingProps } from "./index.js"; //#region src/charts/progress-ring/client.d.ts interface InteractiveProgressRingProps extends ProgressRingProps { /** Announce at quarter-threshold crossings (default true). */ live?: boolean; strings?: ScalarStrings; /** * Opt-in entrance motion (default `false`): the arc draws on when the chart * first mounts client-side. Inert on the server and on hydrated server * HTML; `prefers-reduced-motion` always wins. */ animate?: boolean; /** * Show the floating percent chip on hover/focus (default `true`). `false` * suppresses only the chip. Inert when `label="percent"` already prints it. */ readout?: boolean; /** * The active (hovered / keyboard-focused) unit changed. One arc = 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 ring, and never twice when hover and focus overlap. */ onActive?: ((datum: MicroDatum | null) => void) | undefined; /** Click/tap or Enter/Space — `{ index: 0, value: the fraction value/max }`. */ onSelect?: ((datum: MicroDatum | null) => void) | undefined; } declare function ProgressRing(props: InteractiveProgressRingProps): React.ReactNode; //#endregion export { InteractiveProgressRingProps, ProgressRing };