import PDFObject from './PDFObject';
declare class PDFString extends PDFObject {
    static fromString: (str: string) => PDFString;
    string: string;
    constructor(str: string);
    clone: () => PDFString;
    toString: () => string;
    bytesSize: () => number;
    copyBytesInto: (buffer: Uint8Array) => Uint8Array;
}
export default PDFString;
