/**
 * Identifies party of trade responsible for exchange reporting.
 * - Tag: 113
 * - FIX Specification type: Boolean
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const ReportToExch: Readonly<{
    /** Indicates the party sending message will report trade */
    readonly SenderReports: "N";
    /** Indicates the party receiving message must report trade */
    readonly ReceiverReports: "Y";
}>;
export type ReportToExch = (typeof ReportToExch)[keyof typeof ReportToExch];
