/** * Recursively removes properties with null or undefined values from an object or array. * @param obj The input object or array. * @returns A new object or array with null/undefined properties/elements removed, or the original value if not an object/array. */ export declare function stripNullUndefined(obj: T): T | undefined;