/**
 * Indicates that both sides of the FIX session should reset sequence numbers.
 * - Tag: 141
 * - FIX Specification type: Boolean
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const ResetSeqNumFlag: Readonly<{
    /** No */
    readonly No: "N";
    /** Yes, reset sequence numbers */
    readonly Yes: "Y";
}>;
export type ResetSeqNumFlag = (typeof ResetSeqNumFlag)[keyof typeof ResetSeqNumFlag];
