/**
 * Identifies how the response to the request should be transmitted.
 * - Tag: 725
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const ResponseTransportType: Readonly<{
    /** In-band (default)
        Transport of the request was sent over in-band. */
    readonly Inband: 0;
    /** Out of band
        Pre-arranged out-of-band delivery mechanism (e.g. FTP, HTTP, NDM, etc.) between counterparties. Details specified via ResponseDestination(726). */
    readonly OutOfBand: 1;
}>;
export type ResponseTransportType = (typeof ResponseTransportType)[keyof typeof ResponseTransportType];
