export type Obj = Record; export declare function simpleCopy(input: any): any; export declare function simpleEquals(a: any, b: any): boolean; export declare const removeProperties: (obj: Obj, keys: Obj) => Obj; export declare const removeIndexes: (arr: any[], indexes: number[]) => any[]; export declare const cleanStructure: (x: any) => any; export declare const pretty: (x: any, colors?: boolean) => String;