export interface RunPublishCancelOptions { config?: string; environmentName?: string; jobId?: string; /** Cancel every queued+running job in the env. Mutually exclusive * with a positional jobId. Always requires a typed env-name * confirmation (skippable with --yes in CI). */ allQueued?: boolean; /** Skip the typed env-name prompt on --all-queued (CI use). */ yes?: boolean; verbose?: boolean; trace?: boolean; quiet?: boolean; json?: boolean; logFile?: string; nonInteractive?: boolean; } export declare const runPublishCancel: (options: RunPublishCancelOptions) => Promise;