import { SfCommand } from '@salesforce/sf-plugins-core'; import type { ReportOutputFormat } from '../../../types/index.js'; export type ReportGenerateResult = { format: ReportOutputFormat; out?: string; bytes: number; }; export default class ReportGenerate extends SfCommand { static readonly summary: string; static readonly description: string; static readonly examples: string[]; static readonly flags: { input: import("@oclif/core/interfaces").OptionFlag; format: import("@oclif/core/interfaces").OptionFlag; out: import("@oclif/core/interfaces").OptionFlag; }; run(): Promise; }