import { r as PickerProps } from "../../interactive-C4bxY0ip.js"; import { n as SeriesStrings } from "../../summary-D8UEQXYr.js"; import { n as Format } from "../../format-Dq02z5ZL.js"; import { a as ScatterStrings, n as MicroScatterProps } from "../../index-CahudVxn.js"; //#region src/charts/micro-scatter/client.d.ts interface InteractiveMicroScatterProps extends MicroScatterProps, PickerProps { strings?: ScatterStrings; /** Point announcement templates (shared point wording). */ seriesStrings?: SeriesStrings; /** * Number format/locale for the hover/focus readout. Interactive-only: the * static entry renders dots and a trend line, never a number. */ format?: Format; locale?: string | string[]; /** * Opt-in entrance motion (default `false`): the dots settle onto the plot * on first client-side mount. Inert on the server and on hydrated server * HTML; `prefers-reduced-motion` always wins. */ animate?: boolean; } declare function MicroScatter(props: InteractiveMicroScatterProps): React.ReactNode; //#endregion export { InteractiveMicroScatterProps, MicroScatter };