import { SfCommand } from '@salesforce/sf-plugins-core'; import { type SetupAgentsExportBundle } from '../../services/export-import.js'; export type SetupAgentsExportResult = { outputFile: string; bundle: SetupAgentsExportBundle; }; export default class Export extends SfCommand { static readonly summary: string; static readonly description: string; static readonly examples: string[]; static readonly flags: { output: import("@oclif/core/interfaces").OptionFlag; }; run(): Promise; }