/** Escape HTML special characters. */
export declare function escapeHtml(s: string): string;
/**
* Reject script-bearing URLs. Browsers ignore ASCII whitespace and control
* characters inside a scheme (`java\tscript:` navigates), so those are stripped
* before the scheme is tested. Relative URLs and fragments have no scheme and
* always pass.
*/
export declare function safeUrl(url: string): string;
export declare function renderInline(text: string): string;
//# sourceMappingURL=render.d.ts.map