export declare const INPUT_REGEX_TYPE: { spaces: RegExp; spaceStartEnd: RegExp; alphabetUpperCase: RegExp; alphabetLowerCase: RegExp; numeric: RegExp; onlyNumeric: RegExp; maxMinLength8_30: RegExp; alphabetSpace: RegExp; OneSpaceBtwWords: RegExp; oneSpaceDashBtwWords: RegExp; alphaNumberWithSpacesAndDash: RegExp; alphaNumberWithSpacesDashesBracketsAnds: RegExp; url: RegExp; maxMinLength4_22: RegExp; maxMinLength4_32: RegExp; maxMinLength1_22: RegExp; maxMinLength1_32: RegExp; maxMinLength2_32: RegExp; maxLength250: RegExp; maxMinLength6_32: RegExp; maxMinLength6_64: RegExp; firstAlphaLetter: RegExp; alphaNumberWithSpaces: RegExp; alphaNumeric: RegExp; minOneAlpha: RegExp; phoneNumber: RegExp; maxMinLength4_320: RegExp; email: RegExp; max2digits: RegExp; }; export declare const regexMatching: (value: string, inputType: string | undefined) => string | undefined;