export declare function dateToStr(date: Date): string | null; export declare function strToDate(str: string): Date | null; export declare function arrayToStr(array: T[]): string; export declare function strToArray(str: string): T[]; export declare function objectToStr(obj: T): string; export declare function strToObject(str: string): T; export declare function strToBoolean(str: string): boolean; export declare function clone(a: T): T; export declare function strToStr(str: string): string; export declare function mapToObject(map: Map): any; export declare function objectToMap(object: Object): Map;