import { ByteArray } from '../../types.js'; import { PdfToken } from './token.js'; export declare class PdfHexadecimalToken extends PdfToken { raw: ByteArray; /** * Original bytes from the PDF file, including angle brackets. * Used to preserve exact formatting for incremental updates. * @internal - Non-enumerable to avoid affecting test comparisons */ private _originalBytes?; constructor(hexadecimal: string | ByteArray, originalBytes?: ByteArray); get originalBytes(): ByteArray | undefined; private static toBytes; }