import { XMLParser, XMLBuilder } from 'fast-xml-parser'; import type { ISitemap, IURL } from './ISitemap.js'; export declare class XML { private path; parser: XMLParser; builder: XMLBuilder; xml: ISitemap; constructor(path: string); add: (url: IURL) => void; remove: (loc: string) => void; hasURL: (input: IURL, update?: boolean) => boolean; get count(): number; save: (options?: { dry: boolean; }) => void; } //# sourceMappingURL=xml.d.ts.map