import { r as PickerProps } from "../../interactive-C4bxY0ip.js"; import { r as SummaryStrings } from "../../summary-D8UEQXYr.js"; import { t as ScalarStrings } from "../../strings-scalar-C_B3azW6.js"; import { n as PictogramRowProps } from "../../index-B9EJEiNN.js"; //#region src/core/strings-pictogram.d.ts type PictogramStrings = ScalarStrings & Pick; //#endregion //#region src/charts/pictogram-row/client.d.ts interface InteractivePictogramRowProps extends PictogramRowProps, PickerProps { /** Announce when the value changes (default true). */ live?: boolean; /** * Superset of `ScalarStrings`: the interactive entry also needs the per-unit * `pictogramUnit` template that its roving keyboard announces. */ strings?: PictogramStrings; /** * Opt-in entrance motion (default `false`): each unit settles into place, * staggered, 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 PictogramRow(props: InteractivePictogramRowProps): React.ReactNode; //#endregion export { InteractivePictogramRowProps, PictogramRow };