export declare function isSpace(char: string): boolean; export declare function isAlpha(char: string): boolean; export declare function preprocessInput(input: string): string; export declare type opaque = {} | void; export declare type Option = T | null; export declare type Maybe = Option | undefined | void; export declare function unwrap(maybe: Maybe, msg?: string): T; export declare function or(maybe: Maybe, otherwise: U): T | U;