import { ByteArray } from '../../types.js'; export declare class PdfToken { protected rawBytes: ByteArray; constructor(bytes?: ByteArray); toBytes(): ByteArray; toString(): string; get type(): string; get byteLength(): number; equals(other: PdfToken): boolean; clone(): PdfToken; }