import { GPXBuildData } from '../types';
import { CreatorInterface } from './CreatorInterface';
interface Settings {
    [key: string]: string | boolean;
}
export default class XMLCreator implements CreatorInterface {
    private settings;
    constructor(settings?: Settings);
    private processXmlItem;
    private generateXmlData;
    toString(data: GPXBuildData): string;
}
export {};
