/** * Error thrown when the parser needs more input to continue parsing. */ export declare class NoMoreTokensError extends Error { } /** * Error thrown when the end of file has been reached and no more input is available. */ export declare class EofReachedError extends Error { } /** * Error thrown when an unexpected token is encountered during parsing. */ export declare class UnexpectedTokenError extends Error { constructor(expected: string, actual: string | null); } /** * Error thrown when attempting to access a compressed object * that requires decompression from an object stream. */ export declare class FoundCompressedObjectError extends Error { }