/**
 * The XSLTApply function receives the XSLT file path, and applies it to a string variable or XML file variable.
 * @param {string} xmlString
 * @param {string} xsltString
 * @return string
 */
export declare const xsltApply: (xmlString: string, xsltString: string) => string;
