import type { ElementNode } from './ElementNode'; export declare const DOCUMENT_NODE_TYPE = "document"; export interface DocumentNode extends ElementNode { type: typeof DOCUMENT_NODE_TYPE; version: string; } export declare function isDocumentNode(value: any): value is DocumentNode;