/** * 排除对象中的指定属性 * @param obj 原对象 * @param keys 要排除的键数组 */ export declare const omit: , K extends keyof T>(obj: T, keys: K[]) => Omit;