/** * Transform an environment name to be used as a process name * * @param environmentName */ export declare const transformEnvironmentName: (environmentName: string) => string; /** * Get the path directory, except if it's a URL. * * @param path * @returns */ export declare const getDirname: (path: string) => string | null; export declare const terminalColors: { reset: string; red: string; green: string; blue: string; gray: string; }; /** * Prompt the user for a yes/no confirmation in the terminal. * * @param message * @returns */ export declare const confirm: (message: string) => Promise;