import { r as PickerProps } from "../../interactive-C4bxY0ip.js"; import { n as SeriesStrings } from "../../summary-D8UEQXYr.js"; import { t as SlotStrings } from "../../strings-slots-BK1AuoH5.js"; import { HeatStripProps } from "./index.js"; //#region src/charts/heat-strip/client.d.ts interface InteractiveHeatStripProps extends HeatStripProps, PickerProps { strings?: SeriesStrings & SlotStrings; /** * Opt-in entrance motion (default `false`): the strip wipes in left to right * on first client-side mount — a time-forward reveal for the 1×N cells (an * index cascade over many cells collapses under the stagger cap into a * near-simultaneous fade). Inert on the server and on hydrated server HTML; * `prefers-reduced-motion` always wins. */ animate?: boolean; } declare function HeatStrip(props: InteractiveHeatStripProps): React.ReactNode; //#endregion export { HeatStrip, InteractiveHeatStripProps };