export interface SafeHtmlOptions {
    allowedTags: string[];
    allowedAttrs: string[];
    tagAllowedAttrs: Record<string, string[]>;
    allowedUrl: RegExp;
}
export declare const safeHtmlDefaultOptions: SafeHtmlOptions;
export declare function safeHtml(input: string, options?: Partial<SafeHtmlOptions>): string;
