/**
 * Types of well-known sub-accounts.
 * @see "Section 13.9.2.4.2, OFX Spec"
 */
export declare enum SubAccountType {
    CASH = 0,
    MARGIN = 1,
    SHORT = 2,
    OTHER = 3
}
export declare function SubAccountType_fromOfx(ofxVal: string): SubAccountType;
