/**
* HTML entity decoder
*/
export type Level = 'xml' | 'html4' | 'html5' | 'all';
export type DecodeScope = 'strict' | 'body' | 'attribute';
export interface DecodeOptions {
level?: Level;
scope?: DecodeScope;
}
/** Decodes all HTML entities in text */
export declare function decode(text: string | undefined | null, { level, scope, }?: DecodeOptions): string;