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