/** * a companion to the `Omit` type, returns a new object without the omitted attributes */ export declare const omit: , K extends readonly (keyof T)[]>(obj: T, keys: K) => Omit;