/** * @author Thomas Barnekow * @license MIT */ export declare class XDeclaration { version: string; encoding?: string | undefined; standalone?: string | undefined; constructor(version?: string, encoding?: string | undefined, standalone?: string | undefined); toString(): string; }