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