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