import { FlagInput } from '@contentstack/cli-utilities'; import { BaseCommand } from '../../base-command'; export default class Environments extends BaseCommand { static description: string; static examples: string[]; static flags: FlagInput; run(): Promise; /** * @method selectProject - select projects * * @return {*} {Promise} * @memberof Logs */ selectProject(): Promise; /** * @method validateAndSelectEnvironment * check whether environment is validate or not. * If not then option to select environment * * @return {*} {Promise} * @memberof Logs */ getEnvironments(): Promise; }