import { PDFDictionary, PDFObject } from '../pdf-objects';
declare class PDFStream extends PDFObject {
    dictionary: PDFDictionary;
    constructor(dictionary: PDFDictionary);
    validateDictionary: () => void;
    clone: () => PDFStream;
}
export default PDFStream;
