import type { Option } from './option.js'; import { Some } from './option.js'; /** * Determine whether a value is an instance of `Some`. * * @tags option, guard */ export declare function isSome(value: Opt | unknown): value is Some>;