import { n as MicroDatum } from "../../interactive-C4bxY0ip.js"; import { i as OrbitStatusStrings, n as OrbitStatusProps } from "../../index-Dj4ePPAg.js"; //#region src/charts/orbit-status/client.d.ts interface InteractiveOrbitStatusProps extends OrbitStatusProps { strings?: OrbitStatusStrings; /** * Opt-in entrance motion (default `false`): the glyph pops in (fade + scale) * when the chart first mounts client-side — a whole-svg animation, so it * never collides with the continuous orbit this entry already drives. * Inert on the server and on hydrated server HTML; `prefers-reduced-motion` * always wins. */ animate?: boolean; /** * Show the floating value chip on hover/focus (default `true`). `false` * suppresses only the chip. Inert when `label="latency"` already prints it. */ readout?: boolean; /** * The active (hovered / keyboard-focused) unit changed. The dependency is 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 glyph, and never twice when hover and focus overlap. */ onActive?: ((datum: MicroDatum | null) => void) | undefined; /** The dependency was activated (click, tap, Enter or Space): `{ index: 0, value, label }` — value is latency. */ onSelect?: ((datum: MicroDatum | null) => void) | undefined; } declare function OrbitStatus(props: InteractiveOrbitStatusProps): React.ReactNode; //#endregion export { InteractiveOrbitStatusProps, OrbitStatus };