export declare const getNotAvailableText: () => string;
/**
 *
 * @param value the value to be cloned
 * @note will not work for objects containing functions
 */
export declare const cloneDeep: (value: Object | string | number) => Object | string | number;
export declare const isEmpty: (value: Object) => boolean;
export declare const mergeDeep: (...objects: any[]) => Object;
export declare const isNil: (value: any) => boolean;
