export declare type Opaque = {} | void | null | undefined; export declare type Option = T | null; export declare type Maybe = Option | undefined; export declare function unwrap(val: Maybe): T; export declare function expect(val: Maybe, message: string): T; export declare function unreachable(): Error;