/** * Type of investment account. * * @see "OFX Spec, Section 13.6.2" */ export declare enum InvestmentAccountType { INDIVIDUAL = 0, JOINT = 1, TRUST = 2, CORPORATE = 3 } export declare function InvestmentAccountType_fromOfx(ofxVal: string): InvestmentAccountType;