/*! Strand UI | MIT License | dillingerstaffing.com */ import type { ComponentChildren, JSX } from "preact"; export interface KvEditorialProps extends Omit, "label" | "value"> { /** Label column, mono uppercase. */ label: ComponentChildren; /** Value column, sans. */ value: ComponentChildren; /** Tint the value as a status. */ status?: boolean; } /** * Editorial key-value row for card metadata. * * @example * */ export declare const KvEditorial: import("preact").FunctionalComponent & { ref?: import("preact").Ref | undefined; }>; //# sourceMappingURL=KvEditorial.d.ts.map