import type { KeyValueLabelPosition } from './key-value.types'; /** * @slot custom-value - Optional custom value at key value instead of text value */ export declare class KeyValue { /** * Optional key value icon */ icon?: string; /** * ARIA label for the icon * * @since 3.2.0 */ ariaLabelIcon?: string; /** * Key value label */ label: string; /** * Optional key value label position - 'top' or 'left' */ labelPosition: KeyValueLabelPosition; /** * Optional key value text value */ value?: string; render(): any; }