export interface ISerializabjeJsonNodeAttribute { name: string; value?: string; nameOnly?: boolean; } export interface ISerializabjeJsonNode { name: string; value?: string | number; attributes?: ISerializabjeJsonNodeAttribute[]; children?: ISerializabjeJsonNode[]; selfClose?: boolean; } export declare function jsonToXML(input: ISerializabjeJsonNode, encoding?: "UTF-8", version?: string): string; /** * Converts 'Some string with "quotation".' to 'Some string with "quotation".' */ export declare function encodeXmlString(xmlString: string): string; export declare function stubify(text: string): string;