import { IEnvironmentConfig } from '../types'; import { flags } from '@oclif/command'; import { BaseCommand } from '../base/base-command'; export default class DeleteCommand extends BaseCommand { static description: string; static flags: { force: import("@oclif/parser/lib/flags").IBooleanFlag; env: flags.IOptionFlag; dir: flags.IOptionFlag; }; run(): Promise; getOrCreateEnvironment(): Promise; } export declare const DELETE_PROJECT_MUTATION = "mutation DeleteProjectMutation($id: ID!) {\n deleteProject(input: {id: $id}) {\n node {\n id\n }\n }\n}\n";