/** * A component for key-value pairs. * Both the key and value areas accept any elements and are rendered with predefined layout styles. */ export declare const KeyValue: import("react").ForwardRefExoticComponent<{ size?: import("../../styled-system/recipes").KeyValueSlotRecipeVariant["size"]; keyItem: React.ReactNode; valueItem: React.ReactNode; gridTemplateColumns?: import("react").CSSProperties["gridTemplateColumns"]; } & Omit, HTMLDivElement>, "ref"> & import("react").RefAttributes>;