import { type IXmlWriter } from "./xml.builder.js"; /** */ export declare class StringXmlWriter implements IXmlWriter { /** */ count: number; private _chunks; /** * @param data * @returns */ write(...data: string[]): IXmlWriter; /** * @returns */ toString(): string; /** */ clear(): void; }