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