/*! Strand UI | MIT License | dillingerstaffing.com */ import type { JSX } from "preact"; export interface DataReadoutProps extends Omit, "label"> { /** Overline label. */ label: string; /** The value shown large. */ value: string | number; /** Size rung (DL 11.2.1). */ size?: "sm" | "md" | "lg" | "xl"; } /** * Instrument readout: an overline label above a prominent value. * * @example * */ export declare const DataReadout: import("preact").FunctionalComponent & { ref?: import("preact").Ref | undefined; }>; //# sourceMappingURL=DataReadout.d.ts.map