/**
 *
 * @param {String} text
 * @returns {String}
 * @description This function remove all spaces from text.
 */
declare const removeSpaces: (text: string) => string;
export { removeSpaces };
