export interface KeyStringObject {
    [key: string]: any;
}
/**
 * 判断是对象还是数组
 * @param obj
 * @returns
 */
export declare const getObjOrArrayType: (obj: any) => "object" | "array" | undefined;
/**
 * 深克隆对象
 * @param obj
 * @returns
 */
export declare const deepClone: (obj: any) => any;
