import { r as PickerProps } from "../../interactive-C4bxY0ip.js"; import { n as Format } from "../../format-Dq02z5ZL.js"; import { r as EventRasterProps } from "../../index-CVcv8jKo.js"; //#region src/charts/event-raster/client.d.ts interface InteractiveEventRasterProps extends EventRasterProps, PickerProps { /** * Number format/locale for the hover/focus readout. Interactive-only: the * static entry renders lane names and marks, never a number. */ format?: Format; locale?: string | string[]; /** * Opt-in entrance motion (default `false`): the raster wipes in left-to-right * on first client-side mount — one clip reveal across every lane at once, so * ticks arrive in time order. Inert on the server and on hydrated server * HTML; `prefers-reduced-motion` always wins. */ animate?: boolean; } declare function EventRaster(props: InteractiveEventRasterProps): React.ReactNode; //#endregion export { EventRaster, InteractiveEventRasterProps };