export declare const isASCII: (str: string, extended: any) => boolean; export declare const isPrintableASCII: (str: string) => boolean; export declare const asciiExtendedRegex: RegExp; export declare const escapeForRegex: (str: string) => string; export declare const makeRegexToMatchCharsNotInStr: (str: string) => RegExp; export declare const makeRegexToMatchCharsInStr: (str: string) => RegExp; export declare const alphaNumRegex: RegExp; export declare const removeFromStart: (str: string, char: string) => string; export declare const removeFromEnd: (str: string, char: string) => string; export declare const removeFromEnds: (str: string, char: string) => string; export declare const removeFromMiddle: (str: string, char: string) => string; //# sourceMappingURL=reg.d.ts.map