export declare class GlideXMLParameters { constructor(); constructor(xml: string); /** * Returns true if the parameter with the given name exists. */ containsKey(name: string): boolean; /** * Returns the value for the specified parameter name. */ get(name: string): string; /** * Sets the value for the specified parameter name. */ put(name: string, value: string): void; /** * Returns the root element of the XML document. */ getDocumentElement(): Element; }