/** * Posts a given xml string to the validate endpoint of the CMR * and returns the results * * @param {string} type - service type * @param {string} xml - the xml document * @param {string} identifier - the document identifier * @param {string} provider - the CMR provider * @returns {Promise.} returns true if the document is valid */ declare function validate(type: string, xml: string, identifier: string, provider: string): Promise; export = validate; //# sourceMappingURL=validate.d.ts.map