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