import { Node } from './Node';
/**
 * Generates the header for a document.
 */
export declare class DocHeaderNode implements Node {
    readonly newLines = 1;
    generateCode(out: (code: string) => void): void;
    toDateString(): string;
}
