/** * Removes all the spaces of a string. * @param string * @returns The string without spaces. Example: "The quick brown fox" => "Thequickbrownfox" */ export declare const removeSpaces: (string: string) => string;