/**
 * Indicates whether this message is the last in a sequence of messages for those messages that support fragmentation, such as Allocation Instruction, Mass Quote, Security List, Derivative Security List
 * - Tag: 893
 * - FIX Specification type: Boolean
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const LastFragment: Readonly<{
    /** Not Last Message */
    readonly NotLastMessage: "N";
    /** Last Message */
    readonly LastMessage: "Y";
}>;
export type LastFragment = (typeof LastFragment)[keyof typeof LastFragment];
