/*! Strand UI | MIT License | dillingerstaffing.com */ import type { JSX } from "preact"; export interface StatStripItem { /** Overline label. */ label: string; /** Pre-formatted value. */ value: string; } export interface StatStripProps extends JSX.HTMLAttributes { items: StatStripItem[]; /** `bordered` pads each cell and rules between them. */ variant?: "plain" | "bordered"; className?: string; } /** * A row of labelled values compared across, as a description list. * * @example * */ export declare const StatStrip: import("preact").FunctionalComponent & { ref?: import("preact").Ref | undefined; }>; //# sourceMappingURL=StatStrip.d.ts.map