import { JsonMap } from '@salesforce/ts-types';
import { IOptions } from 'js2xmlparser/lib/options';
declare const standardOptions: IOptions;
declare const writeJSONasXML: ({ path, json, type, options }: WriteJSONasXMLInputs) => Promise<void>;
interface WriteJSONasXMLInputs {
    path: string;
    json: JsonMap;
    type: string;
    options?: IOptions;
}
declare const fixExistingDollarSign: (existing: WriteJSONasXMLInputs['json']) => any;
export { writeJSONasXML, standardOptions, fixExistingDollarSign };
