/**
 * Reason for execution rejection.
 * - Tag: 127
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const DKReason: Readonly<{
    /** Unknown security */
    readonly UnknownSymbol: "A";
    /** Wrong side */
    readonly WrongSide: "B";
    /** Quantity exceeds order */
    readonly QuantityExceedsOrder: "C";
    /** No matching order */
    readonly NoMatchingOrder: "D";
    /** Price exceeds limit */
    readonly PriceExceedsLimit: "E";
    /** Calculation difference */
    readonly CalculationDifference: "F";
    /** No matching ExecutionReport(35=8) */
    readonly NoMatchingExecutionReport: "G";
    /** Other */
    readonly Other: "Z";
}>;
export type DKReason = (typeof DKReason)[keyof typeof DKReason];
