/** * Activation status of an account. * @see "Section 13.6.2, OFX Spec" */ export declare enum ActivationStatus { ACTIVE = 0, PENDING = 1, AVAILABLE = 2 } export declare function ActivationStatus_fromOfx(ofxVal: string): ActivationStatus;