export declare function isNull(obj: any): boolean; export declare function isUndefined(obj: any): boolean; export declare function isBoolean(obj: any): obj is boolean; export declare function isFunction(obj: any): obj is boolean; export declare function isString(obj: any): obj is boolean; export declare function omit(obj: T, ...keys: Array): T;