/** * Use regex to strip non alpha-numeric characters in `$str` and * join the pieces using `$glue`. * * @param {string} $str - String to be stripped. * @param {string} $glue - String to join pieces together. */ export declare function OnlyAlphaNumeric($str: string, $glue?: string): string;