/**
 * Type of sale for options.
 * @see "Section 13.9.2.4.2, OFX Spec"
 */
export declare enum OptionSellType {
    SELL_TO_CLOSE = 0,
    SELL_TO_OPEN = 1
}
export declare function OptionSellType_fromOfx(ofxVal: string): OptionSellType;
