import { Arguments, CommandBuilder } from 'yargs'; export declare const command = "checkout"; export declare const aliases: string[]; export declare const describe = "Checkout merge requests and branches."; export declare const builder: CommandBuilder; export declare const handler: (argv: Arguments<{ cwd: string; }>) => Promise;