/**
 * 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: 77
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const PositionEffect: Readonly<{
    /** Close */
    readonly Close: "C";
    /** FIFO */
    readonly FIFO: "F";
    /** Open */
    readonly Open: "O";
    /** Rolled */
    readonly Rolled: "R";
    /** Close but notify on open */
    readonly CloseButNotifyOnOpen: "N";
    /** Default */
    readonly Default: "D";
}>;
export type PositionEffect = (typeof PositionEffect)[keyof typeof PositionEffect];
