import type { Undefinable } from '../../undefinable/core/undefinable.js';
import type { Option } from './option.js';
/**
 *  Return `T` if _input_ is `Some(T)`.
 *  Otherwise, return `undefined`.
 */
export declare function toUndefinableFromOption<T>(input: Option<T>): Undefinable<T>;
