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-comet-trail.d.ts type CometTrailStrings = Pick; //#endregion //#region src/charts/comet-trail/index.d.ts interface CometTrailProps { /** The rolling window, oldest → newest (last = now). */ data: readonly number[]; /** Points kept visible in the trail. Default 12 (cap 20). */ trail?: number | undefined; /** Numeral after the head (`last`, default) or none. */ label?: "last" | "none" | undefined; domain?: readonly [number, number] | undefined; width?: number | undefined; height?: number | undefined; color?: string | undefined; fontSize?: number | undefined; format?: Format | undefined; locale?: string | string[] | undefined; strings?: CometTrailStrings | 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 cometTrailSummary(data: readonly number[], opts?: { trail?: number | undefined; strings?: CometTrailStrings | undefined; format?: Format | undefined; locale?: string | string[] | undefined; }): string; declare function CometTrail(props: CometTrailProps): ReactNode; //#endregion export { CometTrailStrings as i, CometTrailProps as n, cometTrailSummary as r, CometTrail as t };