export interface Obj { [key: string]: any; } export declare const guid: () => string; export declare const throttle: (func: any, wait: any, options?: any) => (this: any) => void; export declare const mergeStyle: (target: Obj | undefined, style: Obj) => { [x: string]: any; }; export declare const twoDimensional: (data: any[], columns: number, span?: number | number[] | undefined, standard?: number) => [any[], any[]]; export declare const flat: (arr: any[]) => any[]; export declare const isObjectValueEqual: (a: Obj, b: Obj) => boolean; export declare const isArrayValueEqual: (a: any[], b: any[]) => boolean; export declare const deepClone: (data: any) => any;