import { Arguments, CommandBuilder } from 'yargs'; export declare const command = "open"; export declare const aliases: string[]; export declare const describe = "Open project in Gitlab"; export declare const builder: CommandBuilder; export declare const handler: (argv: Arguments<{ cwd: string; }>) => Promise;