/**
 * Used to describe the ownership of the position.
 * - Tag: 1834
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const PositionCapacity: Readonly<{
    /** Principal */
    readonly Principal: 0;
    /** Agent */
    readonly Agent: 1;
    /** Customer */
    readonly Customer: 2;
    /** Counterparty */
    readonly Counterparty: 3;
}>;
export type PositionCapacity = (typeof PositionCapacity)[keyof typeof PositionCapacity];
