type Omit<T, K extends keyof any> = Pick<T, Exclude<keyof T, K>>type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;