/**
 * Type of purchase for stocks and mutual funds.
 * @see "Section 13.9.2.4.2, OFX Spec"
 */
export declare enum BuyType {
    BUY = 0,
    BUY_TO_COVER = 1
}
export declare function BuyType_fromOfx(ofxVal: string): BuyType;
