import { Context } from '../..'; export declare const command = "create [directory]"; export declare const describe = "Bootstrap a new GraphQL project"; export declare const builder: { 'no-install': { describe: string; type: string; default: boolean; }; }; export declare function handler(context: Context, argv: { directory?: string; noInstall: boolean; }): Promise;