export declare const None: undefined;
export type None = undefined;
export type Optional<T> = T | None;
