/**
 * Type of purchase for options.
 * @see "Section 13.9.2.4.2, OFX Spec"
 */
export declare enum OptionBuyType {
    BUY_TO_OPEN = 0,
    BUY_TO_CLOSE = 1
}
export declare function OptionBuyType_fromOfx(ofxVal: string): OptionBuyType;
