import * as React from "react"; import type { CompactBarTrendProp } from "../../props/components/charts.prop.js"; export type { CompactBarTrendProp, CompactBarTrendProp as CompactBarTrendProps, } from "../../props/components/charts.prop.js"; /** * CompactBarTrend — a **dependency-free** compact vertical bar trend for dashboard summary cards * (a seven-day "new organizations" strip, a weekly activity pulse…). The only inline value is the * datum itself (`--chart-trend-bar-value`, a 0..1 ratio of the largest bar). - **Colour is * token-owned** — muted marks read `--chart-trend-bar-background` (default * `hsl(var(--muted-foreground) / .75)`), the emphasized mark reads * `--chart-trend-bar-emphasis-background` (default `hsl(var(--primary))`). - **a11y** — reuses * `ChartFrame`: a `
` with a visible `
`, a `role="img"` plot named by a * localized one-line summary, and a visually-hidden per-category value list referenced through * `aria-describedby` (WCAG 1.1.1). */ export declare function CompactBarTrend({ data, categoryKey, valueKey, label, showCaption, description, size, emphasizedIndex, showCategoryLabels, numberFormat, footer, emptyMessage, className, id, ref, }: CompactBarTrendProp): React.JSX.Element;