import * as sanitizeHtml from 'sanitize-html';
import * as express from 'express';
/**
* Sanitize any json schema.
* By walk on all json tree and cleaning an existing string.
* @param jsonSchema Json to sanitize.
* @param cleanOptions 'sanitize-html' lib options.
*/
export declare function sanitizeJsonSync(jsonSchema: any, cleanOptions?: sanitizeHtml.IOptions | undefined): void;
/**
* Sanitize any json schema async.
* By walk on all json tree and cleaning an existing string.
* @param jsonSchema Json to sanitize.
* @param cleanOptions 'sanitize-html' lib options.
* @returns the sanitized json object.
*/
export declare function sanitizeJsonAsync(jsonSchema: Object, cleanOptions?: sanitizeHtml.IOptions | undefined): Promise