/**
 * Type of Trade Capture Report.
 * - Tag: 569
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const TradeRequestType: Readonly<{
    /** All Trades */
    readonly AllTrades: 0;
    /** Matched trades matching criteria provided on request (Parties, ExecID, TradeID, OrderID, Instrument, InputSource, etc.) */
    readonly MatchedTradesMatchingCriteria: 1;
    /** Unmatched trades that match criteria */
    readonly UnmatchedTradesThatMatchCriteria: 2;
    /** Unreported trades that match criteria */
    readonly UnreportedTradesThatMatchCriteria: 3;
    /** Advisories that match criteria */
    readonly AdvisoriesThatMatchCriteria: 4;
}>;
export type TradeRequestType = (typeof TradeRequestType)[keyof typeof TradeRequestType];
