/**
 * Type of position.
 * @see "Section 13.9.2.4.4, OFX Spec"
 */
export declare enum PositionType {
    LONG = 0,
    SHORT = 1
}
export declare function PositionType_fromOfx(ofxVal: string): PositionType;
