import type { Nullable } from '../../nullable/nullable.js';
import type { Option } from './option.js';
/**
 *  Return `T` if _input_ is `Some(T)`.
 *  Otherwise, return `null`.
 */
export declare function toNullableFromOption<T>(input: Option<T>): Nullable<T>;
