/**
 * Indicates if a trade should be or has been published via a market publication service. The indicator governs all publication services of the recipient. Replaces PublishTrdIndicator(852).
 * - Tag: 1390
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const TradePublishIndicator: Readonly<{
    /** Do Not Publish Trade */
    readonly DoNotPublishTrade: 0;
    /** Publish Trade */
    readonly PublishTrade: 1;
    /** Deferred Publication */
    readonly DeferredPublication: 2;
    /** Published
        Indicates that the transaction has been published to the market. */
    readonly Published: 3;
}>;
export type TradePublishIndicator = (typeof TradePublishIndicator)[keyof typeof TradePublishIndicator];
