/**
 * Identifies role of dealer in the trade.
 * - Tag: 1048
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const DealingCapacity: Readonly<{
    /** Agent */
    readonly Agent: "A";
    /** Principal */
    readonly Principal: "P";
    /** Riskless Principal */
    readonly RisklessPrincipal: "R";
    /** Cross as principal
        In the context of the EU Consolidated Tape, this is used for the post-trade transparency flag MTCH. */
    readonly CrossAsPrincipal: "X";
}>;
export type DealingCapacity = (typeof DealingCapacity)[keyof typeof DealingCapacity];
