/**
 * Types of 401(k) sources.
 * @see "Section 13.9.2.4.2, OFX Spec"
 */
export declare enum Inv401KSource {
    PRETAX = 0,
    AFTER_TAX = 1,
    MATCH = 2,
    PROFIT_SHARING = 3,
    ROLLOVER = 4,
    OTHER_VEST = 5,
    OTHER_NONVEST = 6
}
export declare function Inv401KSource_fromOfx(ofxVal: string): Inv401KSource;
