export declare function o2a(object: Obj, keyName?: string): Array<(P extends { [key: string]: any; } ? P : { value: P; }) & { $key: string; }>; export declare function a2o(array: Obj[], keyName?: string): { [key: string]: Obj; }; export declare function uniqueId(length?: number, startWith?: string): string; export declare function honorData(data?: Obj | any): ({ [K in keyof Obj]: any; });