/** * Removes slashes at the BEGINNING of a string * * @param string string The string to remove slashes from */ export declare const unLeadingSlashIt: (string: string) => string; /** * Removes slashes at the END of a string * * @param string string The string to remove slashes from */ export declare const unTrailingSlashIt: (string: string) => string; /** * Removes slashes from beginning and end of a string * * @param string string The string to remove slashes from */ export declare const removeEndSlashes: (string: string) => string; export declare const sanitizeEnvironmentName: (environmentName: string) => string;