/** * The class of debt. * @see "Section 13.8.5.2, OFX Spec" */ export declare enum DebtClass { TREASURY = 0, MUNICIPAL = 1, CORPORATE = 2, OTHER = 3 } export declare function DebtClass_fromOfx(ofxVal: string): DebtClass;