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 { t as DistStrings } from "../../strings-dist-B57yRJFG.js"; import { SeismogramProps } from "./index.js"; //#region src/charts/seismogram/client.d.ts interface InteractiveSeismogramProps extends SeismogramProps, PickerProps { strings?: DistStrings; /** Slot announcement templates (shared point wording). */ seriesStrings?: SeriesStrings & SlotStrings; /** * Opt-in entrance motion (default `false`): the strip wipes on when the * chart first mounts client-side. Inert on the server and on hydrated * server HTML; `prefers-reduced-motion` always wins. */ animate?: boolean; } declare function Seismogram(props: InteractiveSeismogramProps): React.ReactNode; //#endregion export { InteractiveSeismogramProps, Seismogram };