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