/**
 * Indicates that the Sequence Reset message is replacing administrative or application messages which will not be resent.
 * - Tag: 123
 * - FIX Specification type: Boolean
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const GapFillFlag: Readonly<{
    /** Sequence Reset, Ignore Msg Seq Num (N/A For FIXML - Not Used) */
    readonly SequenceReset: "N";
    /** Gap Fill Message, Msg Seq Num Field Valid */
    readonly GapFillMessage: "Y";
}>;
export type GapFillFlag = (typeof GapFillFlag)[keyof typeof GapFillFlag];
