import { PDFObject } from './pdf-object.ts'; import type { PDFWriter } from './pdf-writer.ts'; /** * Represents a PDF name object, which is an atomic symbol uniquely * defined by a sequence of characters. */ export declare class PDFName extends PDFObject { /** The string value of the PDFName. */ readonly name: string; /** * Creates a PDFName from a string. */ static of(value: string): PDFName; private constructor(); /** * Writes the PDF name to the given PDFWriter. */ write(writer: PDFWriter): void; }