export interface KeyValueItem { label: string; value: string | React.ReactNode; } export type KeyValueListTextSize = "small" | "medium"; export interface KeyValueListProps { items: KeyValueItem[]; showDivider?: boolean; textSize?: KeyValueListTextSize; className?: string; } export declare function KeyValueList({ items, showDivider, textSize, className, }: KeyValueListProps): import("react/jsx-runtime").JSX.Element;