/**
 * Indicates if a trade should be reported via a market reporting service.
 * - Tag: 852
 * - FIX Specification type: Boolean
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const PublishTrdIndicator: Readonly<{
    /** Do Not Report Trade */
    readonly DoNotReportTrade: "N";
    /** Report Trade */
    readonly ReportTrade: "Y";
}>;
export type PublishTrdIndicator = (typeof PublishTrdIndicator)[keyof typeof PublishTrdIndicator];
