import { c as Value } from "../../summary-D8UEQXYr.js"; import { n as Format } from "../../format-Dq02z5ZL.js"; import { t as DistStrings } from "../../strings-dist-B57yRJFG.js"; import { CSSProperties, ReactNode } from "react"; //#region src/charts/histogram-strip/index.d.ts declare function histogramSummary(total: number, modal: { x0: number; x1: number; } | undefined, fmt: (n: number) => string, strings: DistStrings): string; interface HistogramStripProps { /** RAW observations — binned internally. */ data: readonly Value[]; /** Bin count; auto = min(12, ⌈√n⌉). */ bins?: number | undefined; /** A VALUE whose bin gets accent — "where you fall in the distribution". */ markValue?: number | undefined; /** Fixed bin edges across small multiples (calibration). */ domain?: readonly [number, number] | undefined; width?: number | undefined; height?: number | undefined; color?: string | undefined; format?: Format | undefined; locale?: string | string[] | undefined; strings?: DistStrings | undefined; title?: string | undefined; summary?: string | false | undefined; id?: string | undefined; className?: string | undefined; style?: CSSProperties | undefined; children?: ReactNode | undefined; } declare function HistogramStrip(props: HistogramStripProps): ReactNode; //#endregion export { HistogramStrip, HistogramStripProps, histogramSummary };