import BaseClass from './base-class'; export default class PreCheck extends BaseClass { projectBasePath: string; /** * @method run * * @param {boolean} [identifyProject=true] * @return {*} {Promise} * @memberof PreCheck */ run(): Promise; /** * @method performValidations - Validate if the current project is an existing launch project * * @return {*} {(Promise)} * @memberof PreCheck */ performValidations(): Promise; /** * @method displayPreDeploymentDetails * * @memberof GitHub */ displayPreDeploymentDetails(): Promise; /** * @method validateLaunchConfig * * @memberof PreCheck */ validateLaunchConfig(): void; }