import type { IFIXParser } from '../IFIXParser.ts';
import type { Message } from '../message/Message.ts';
/**
 * Handles the SequenceReset message in a FIX session.
 * This function processes the SequenceReset message and updates the message sequence number
 * to the new value specified in the message.
 *
 * @param {IFIXParser} parser - The FIX parser instance handling the session
 * @param {Message} message - The SequenceReset message containing the new sequence number
 */
export declare const handleSequenceReset: (parser: IFIXParser, message: Message) => void;
