/** * Returns a clone of the object without the blacklisted keys * * @param {*} obj * @param {*} blacklist */ export declare function omit(obj: object, ...blacklist: string[]): object;