import { flags } from '@oclif/command'; import { BaseCommand } from '../base/base-command'; export declare const LIST_CLUSTER_QUERY = "query {\n listCluster(first: 100, filter: {node: {openForProjects: true}}) {\n edges {\n node {\n id\n alias\n name\n pingUrl\n }\n }\n }\n}"; export declare const CREATE_PROJECT_MUTATION = "mutation CreateProject($input: createProjectInput!) {\n createProject(input: $input) {\n node {\n id\n alias\n name\n endpoint\n }\n }\n}"; export default class InitCommand extends BaseCommand { static description: string; static args: ({ name: string; description: string; parse?: undefined; } | { name: string; description: string; parse: (value: string) => string; })[]; static flags: { name: flags.IOptionFlag; alias: flags.IOptionFlag; account: flags.IOptionFlag; dir: flags.IOptionFlag; }; run(): Promise; }