/** * herdctl cancel - Cancel a running job * * Commands: * - herdctl cancel Cancel running job (with confirmation) * - herdctl cancel --force Force cancel (SIGKILL) * - herdctl cancel --yes Skip confirmation prompt */ export interface CancelOptions { force?: boolean; yes?: boolean; json?: boolean; state?: string; config?: string; } /** * Cancel a running job (herdctl cancel) */ export declare function cancelCommand(jobId: string, options: CancelOptions): Promise; //# sourceMappingURL=cancel.d.ts.map