import type { Option } from './option.js'; /** * Extract value from a `Some` or throw on a `None`. * * @tags option, unwrap, right-biased, unsafe */ export declare function unwrap(option: Opt): Option.Type;