export declare class Option { private value; private constructor(); static of(v: T): Option; static empty(): Option; expect(info: string): T; unwrap(): T; get(): T | null; isEmpty(): boolean; hasValue(): boolean; }