/**
 * Reason debt was sold.
 * @see "Section 13.9.2.4.2, OFX Spec"
 */
export declare enum SellDebtReason {
    CALL = 0,
    SELL = 1,
    MATURITY = 2
}
export declare function SellDebtReason_fromOfx(ofxVal: string): SellDebtReason;
