import { GPXBuildData } from '../types'; import { CreatorInterface } from './CreatorInterface'; type Settings = Record; export declare class XMLCreator implements CreatorInterface { private settings; constructor(settings?: Settings); private processXmlItem; private generateXmlData; toString(data: GPXBuildData): string; } export {};