import { c as Value, n as SeriesStrings } from "../../summary-D8UEQXYr.js"; import { n as Format } from "../../format-Dq02z5ZL.js"; import { t as CellShape } from "../../cell-C5AYGf-I.js"; import { CSSProperties, ReactNode } from "react"; //#region src/charts/heat-strip/index.d.ts interface HeatStripProps { data: readonly Value[]; /** Shared step-scale granularity (default 5). */ steps?: number | undefined; /** Shared cell vocabulary. */ shape?: CellShape | undefined; /** Cross-row calibration (same warning as HeatCell — share one domain). */ domain?: readonly [number, number] | undefined; width?: number | undefined; height?: number | undefined; color?: string | undefined; format?: Format | undefined; locale?: string | string[] | undefined; strings?: SeriesStrings | undefined; title?: string | undefined; summary?: string | false | undefined; id?: string | undefined; className?: string | undefined; style?: CSSProperties | undefined; children?: ReactNode | undefined; } declare function HeatStrip(props: HeatStripProps): ReactNode; //#endregion export { HeatStrip, HeatStripProps };