/** * Type of sale for stocks and mutual funds. */ export declare enum SellType { SELL = 0, SELL_SHORT = 1 } export declare function SellType_fromOfx(ofxVal: string): SellType;