export declare class Utilities {
    static removeUndefined(obj: any): object;
    static generateQuerySting(queryObject: object): string;
    static isObjectEmpty(obj: any): boolean;
    static extend(target: any, source: any): any;
    static typeOf(obj: any, sType: string): boolean;
}
