import { AbstractSequenceStart } from "./abstract-sequence-start.js"; /** * A class representing the sequence start value sent with the ACCOUNT_REPLY server packet. * * @see * {@link AccountReplyServerPacket} */ export declare class AccountReplySequenceStart extends AbstractSequenceStart { private constructor(); /** * Creates an instance of `AccountReplySequenceStart` from the value sent with the ACCOUNT_REPLY * server packet. * * @param value - the sequence_start char value sent with the ACCOUNT_REPLY server packet * * @see * {@link AccountReplyServerPacket.ReplyCodeDataDefault.sequenceStart} */ static fromValue(value: number): AccountReplySequenceStart; /** * Generates an instance of AccountReplySequenceStart with a random value in the range `0-240`. * * @returns An instance of `AccountReplySequenceStart` */ static generate(): AccountReplySequenceStart; } //# sourceMappingURL=account-reply-sequence-start.d.ts.map