import { PDFDictionary } from '../pdf-objects';
declare class PDFTrailer {
    static from: (offset: number, dictionary?: PDFDictionary | undefined) => PDFTrailer;
    offset: number;
    dictionary: PDFDictionary | void;
    constructor(offset: number, dictionary?: PDFDictionary);
    toString: () => string;
    bytesSize: () => number;
    copyBytesInto: (buffer: Uint8Array) => Uint8Array;
}
export default PDFTrailer;
