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