/** * Creates a new object excluding the specified keys from the original object. * * @example * omitFromObject({ a: 1, b: 2, c: 3 }, ["b"]) // { a: 1, c: 3 } * * @param obj The original object. * @param keys An array of keys to omit. * @returns A new object excluding the omitted keys. */ export declare function omitFromObject, K extends keyof T>(obj: T | null | undefined, keys: K[]): Omit;