type KeyValue = {
    key: string;
    value: string;
};
type KeyValueProps = {
    keyValue: KeyValue[];
    title: string;
    keyColumn: string;
    valueColumn: string;
    renderValue?: (item: KeyValue) => JSX.Element;
};
export declare function PageDetailKeyValueList(props: KeyValueProps): import("react/jsx-runtime").JSX.Element;
export {};
