/** * Related option transaction type. * @see "Section 13.9.2.4.4, OFX Spec" */ export declare enum RelatedOptionType { SPREAD = 0, STRADDLE = 1, NONE = 2, OTHER = 3 } export declare function RelatedOptionType_fromOfx(ofxVal: string): RelatedOptionType;