///
import { Readable } from 'stream';
/**
* Verify the passed in xml is valid. Requires xmllib be installed
* @param xml what you want validated
* @return {Promise} resolves on valid rejects [error stderr]
*/
export declare function xmlLint(xml: string | Readable): Promise;