export declare const omit: <T extends object, K extends string | number | symbol>(obj: T, ...keys: K[]) => Omit<T, K>;
