/** * @deprecated */ export declare class Option { value: T | undefined | null; constructor(value: T | undefined | null); hasValue(): boolean; }