import { IStringProps, TStringValidatorResult } from '../_types'; export interface IUnescapeProps { } /** * Replace HTML encoded entities with `<`, `>`, `&`, `'`, `"` and `/`. */ export declare const unescape: (props?: IUnescapeProps & Omit) => TStringValidatorResult;