import type { Option } from './option.js';
/**
 *  Flatten the inner value of _input_.
 */
export declare function flattenForOption<T>(input: Option<Option<T>>): Option<T>;
