/**
 * Type of income.
 * @see "Section 13.9.2.4.2, OFX Spec"
 */
export declare enum IncomeType {
    LONG_TERM_CAP_GAINS = 0,
    SHORT_TERM_CAP_GAINS = 1,
    DIVIDEND = 2,
    INTEREST = 3,
    MISC = 4
}
export declare function IncomeType_fromOfx(ofxVal: string): IncomeType;
