import { SfCommand } from '@salesforce/sf-plugins-core'; /** Revokes this OS user's durable activation for a workspace (the current directory by default). */ export default class Revoke extends SfCommand { static readonly summary = "Revoke setup-agents authorization for a workspace."; static readonly description = "Removes the local durable authorization for the current workspace. Use --target-dir to revoke another workspace."; static readonly examples: string[]; static readonly flags: { 'target-dir': import("@oclif/core/interfaces").OptionFlag; }; run(): Promise; }