/**
 * Indicates whether the resulting position after a trade should be an opening position or closing position. Used for omnibus accounting - where accounts are held on a gross basis instead of being netted together.
 * - Tag: 1047
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const AllocPositionEffect: Readonly<{
    /** Open */
    readonly Open: "O";
    /** Close */
    readonly Close: "C";
    /** Rolled */
    readonly Rolled: "R";
    /** FIFO */
    readonly FIFO: "F";
}>;
export type AllocPositionEffect = (typeof AllocPositionEffect)[keyof typeof AllocPositionEffect];
