export default class ObjectHelper {
    static isNullOrUndefined(object: any): boolean;
    static clone<T>(newInstance: T, data: T): T;
}
