import { r as MinimapStripProps } from "../../index-5klMYaEV.js"; //#region src/charts/minimap-strip/client.d.ts interface InteractiveMinimapProps extends MinimapStripProps { onWindowChange?: (window: [number, number]) => void; /** * Show the floating window-range chip on hover/focus/drag (default `true`). * `false` suppresses only the chip — `aria-valuetext` and `onWindowChange` * are untouched, so the range can be rendered elsewhere. */ readout?: boolean; /** * Opt-in entrance motion (default `false`): the strip wipes in left to * right on first client-side mount. Inert on the server and on hydrated * server HTML; `prefers-reduced-motion` always wins. */ animate?: boolean; } declare function MinimapStrip(props: InteractiveMinimapProps): React.ReactNode; //#endregion export { InteractiveMinimapProps, MinimapStrip };