/** * Converts null to undefined, passes all other values through. */ export declare function withNullAsUndefined(x: T | null): T | undefined; /** * Converts undefined to null, passes all other values through. */ export declare function withUndefinedAsNull(x: T | undefined): T | null;