export type TypeKeyValue = { key: string; value: string; }; export declare function formatKeyValueListToObj(data?: TypeKeyValue[]): Record; export declare function formatLabelToKeyValueList(data?: Record): TypeKeyValue[];