import type { ValidateFunction } from 'ajv'; /** * Core XML Document support used for XML fortatted DataPackages documents * such as Iconsets or Basemaps */ export default class XMLDocument { raw: T; constructor(raw: T); static check(input: string, check: ValidateFunction): U; to_xml(): string; }