/** * Replaces characters that match the 'regex' being passed on the string. * from 4100 NW 2nd, suite 100 * to 4100 NW 2nd suite 100 * * @param { string } value string that needs to be sanitized. * @param { RegExp | string } regex to match invalid characters that we want to remove from string being passed. * @return { string } Returns a string without matching invalid characters. */ export declare function sanitizeString(value: string, regex: RegExp | string): string;