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