/**
 * Indicates whether this message is the last report message in response to a request message, e.g. OrderMassStatusRequest(35=AF), TradeCaptureReportRequest(35=AD).
 * - Tag: 912
 * - FIX Specification type: Boolean
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const LastRptRequested: Readonly<{
    /** Not last message */
    readonly NotLastMessage: "N";
    /** Last message */
    readonly LastMessage: "Y";
}>;
export type LastRptRequested = (typeof LastRptRequested)[keyof typeof LastRptRequested];
