/**
 * Removes all spaces from the input string.
 * @param str The input string.
 * @returns The string without spaces.
 */
export declare const removeSpaces: (str: string) => string;
