import { n as MicroDatum } from "../../interactive-C4bxY0ip.js"; import { n as BulletProps } from "../../index-DmSQQ4GN.js"; //#region src/charts/bullet/client.d.ts interface InteractiveBulletProps extends BulletProps { /** * Opt-in entrance motion (default `false`): the measure bar sweeps in from * the left 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 value chip on hover/focus (default `true`). `false` suppresses only the chip. */ readout?: boolean; /** * The active (hovered / keyboard-focused) unit changed. One measure = 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 mark, and never twice when hover and focus overlap. */ onActive?: ((datum: MicroDatum | null) => void) | undefined; /** The bullet was activated (click, tap, Enter or Space): `{ index: 0, value }` — the measure (never the target or a band). */ onSelect?: ((datum: MicroDatum | null) => void) | undefined; } declare function Bullet(props: InteractiveBulletProps): React.ReactNode; //#endregion export { Bullet, InteractiveBulletProps };