/** * Remove undefined values from an object * Returns a new object without modifying the original * @param obj - The object to clean * @returns A new object with undefined values removed */ export declare function removeUndefined>(obj: T): Partial;