import { PdfToken } from './token.js'; import { ByteArray } from '../../types.js'; export declare class PdfCommentToken extends PdfToken { static EOF: PdfCommentToken; comment: ByteArray; constructor(comment: ByteArray | string); get innerComment(): string; private static toBytes; static isEofCommentToken(token: PdfToken): boolean; }