/**
 * Type T with the given properties removed
 */
export declare type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;
//# sourceMappingURL=omit.d.ts.map