import { SfCommand } from '@salesforce/sf-plugins-core'; import type { SetupAgentsVerifyResult } from '../../types/index.js'; export default class Verify extends SfCommand { static readonly summary: string; static readonly description: string; static readonly examples: string[]; static readonly flags: { rules: import("@oclif/core/interfaces").OptionFlag; profile: import("@oclif/core/interfaces").OptionFlag; }; run(): Promise; }