/** * Option types. */ export declare enum OptionType { /** Put option. */ Put = "P", /** Call option. */ Call = "C" } export default OptionType;