/** * Returns a new object with the specified property removed. * * @template T - Type of the input object. * @template P - Key of the property to remove. * @param {T} object - The original object. * @param {P} property - The property key to remove. * @returns {Omit} A new object without the specified property. */ export declare function deleteProperty(object: T, property: P): Omit;