import { ForegroundColor } from 'chalk'; import { Deployment, DeployRequest, Organization, Squid, SquidRequest } from './api'; import { CliCommand } from './command'; export declare abstract class DeployCommand extends CliCommand { deploy: Deployment | undefined; logsPrinted: number; promptAttachToDeploy(squid: Squid, { interactive }?: { interactive?: boolean; }): Promise; promptAddTag({ organization, name, tag }: { organization: Pick; name: string; tag: string; }, { using, interactive }?: { using?: string; interactive?: boolean; }): Promise; pollDeploy({ deploy, organization, }: DeployRequest & { streamLogs?: boolean; }): Promise; streamLogs({ organization, squid }: SquidRequest): Promise; printDebug: () => void; showError(text: string, reason?: string): never; isFailed(): boolean; logDeployResult(color: typeof ForegroundColor, message: string): void; } //# sourceMappingURL=deploy-command.d.ts.map