import { ForbidCharactersDescription } from './forbid-characters-description'; export interface AllowRegexDescription { allowRegex: { regExp: string; }; } export declare const isAllowRegexDescription: (val: any) => val is ForbidCharactersDescription;