/** * Option exercise actions. */ export declare enum OptionExerciseAction { /** Exercise the option */ EXERCISE = 1, /** Let the option lapse. */ LAPSE = 2 } export default OptionExerciseAction;