/**
 * Gets clean project name (slug style) for environment variables, cookies, etc
 * @param projectPath Main project (solution) path
 */
declare const getCleanProjectName: (projectPath?: string | undefined) => Promise<string>;
export default getCleanProjectName;
