/**
 * 此方法创建一个对象，该对象由自己不可省略的属性组成。
 */
export declare function omit<T extends object, U extends keyof T>(object: T, paths: U[]): Omit<T, U>;
