type Omit = Pick>; /** * Return a copy of an object excluding the given key, or array of keys. Also accepts an optional filter function as the last argument." * * ```ts * omit({a: 'a', b: 'b', c: 'c'}, ['a', 'c']) * //=> { b: 'b' } * ``` * * @param object * @param keys */ declare function omit( object: GObject, key: GKey | GKey[], ): Omit; declare function omit( object: GObject, fn: (value: GObject[GKey], key: GKey, obj: GObject) => boolean, ): { [key: string]: any }; export = omit;