interface KeyProp { key: string; value: any; } export declare function makePropList(obj: { [key: string]: any; }): KeyProp[]; export {};