import type { Option } from './option.js'; /** * Removes one level of nesting from an `Option>` * * @tags option, transform, transform-option */ export declare function flatten, T = Opt extends Option> ? T : unknown>(opt: Opt): Option;