import { r as SummaryStrings } from "./summary-D8UEQXYr.js"; import { n as Format } from "./format-Dq02z5ZL.js"; import { CSSProperties, ReactNode } from "react"; //#region src/core/strings-breathing-dot.d.ts type BreathingDotStrings = Pick; //#endregion //#region src/charts/breathing-dot/index.d.ts interface BreathingDotProps { value: number | null; /** calm/elevated/strained band edges (default [0.5, 0.8]). */ thresholds?: readonly [number, number] | undefined; /** Percent numeral beside the dot (the exact-read escape hatch). */ label?: "value" | "none" | undefined; size?: number | undefined; fontSize?: number | undefined; format?: Format | undefined; locale?: string | string[] | undefined; strings?: BreathingDotStrings | undefined; /** Minimum in-chart label size, in viewBox units. Geometry sizes labels from * the mark and floors them at 7; this raises that floor and moves the * reserved gutter with it. A label the box cannot seat at the raised floor * drops rather than shrinking back under it. */ labelSize?: number | undefined; title?: string | undefined; summary?: string | false | undefined; id?: string | undefined; className?: string | undefined; style?: CSSProperties | undefined; children?: ReactNode | undefined; } declare function breathingDotSummary(value: number | null, opts?: { thresholds?: readonly [number, number] | undefined; strings?: BreathingDotStrings | undefined; format?: Format | undefined; locale?: string | string[] | undefined; }): string; declare function BreathingDot(props: BreathingDotProps): ReactNode; //#endregion export { BreathingDotStrings as i, BreathingDotProps as n, breathingDotSummary as r, BreathingDot as t };