declare class XmlUtility {
static Xml2json(data: string, arrayChecker: (node: Element) => boolean): any;
}
declare class DomLoader {
static LoadScript(scriptUrl: string): Promise<unknown>;
static LoadCss(cssUrl: string): Promise<unknown>;
}
declare class Guid {
static NewGuid(): string;
}
declare class HttpClient {
static get(url: string): Promise<string>;
}
declare class FileSystem {
static GetFileSystems(url: string): Promise<Spider.FileSystemItem[]>;
}