import { OpenXiangdaCommand } from '../base.js'; export default class Stop extends OpenXiangdaCommand { static summary: string; static flags: { environment: import("@oclif/core/interfaces").OptionFlag; cwd: import("@oclif/core/interfaces").OptionFlag; }; run(): Promise | { schemaVersion: "openxiangda.cli-result/v2"; ok: boolean; operation: string; workspace: import("openxiangda-contracts").WorkspaceIdentity | { appCode: string; name: string | undefined; }; data: {} | null; error: { details?: Record; pointer?: string; code: string; message: string; retryable: boolean; remediation: string; nextCommand: string | null; } | null; } | undefined>; } //# sourceMappingURL=stop.d.ts.map