import type { Nullable } from '../nullable/nullable.js';
import { type Undefinable } from './undefinable.js';
/**
 *  Return `null` if _input_ is `undfined`.
 *  Otherwise, return `T` directly.
 */
export declare function toNullableFromUndefinable<T>(input: Undefinable<T>): Nullable<T>;
