import { SfCommand } from '@salesforce/sf-plugins-core'; export type FileDownloadEntry = { fullName: string; type: string; filePath: string; }; export type PackageVersionRetrieveCommandResult = FileDownloadEntry[]; export declare class PackageVersionRetrieveCommand extends SfCommand { static readonly summary: string; static readonly description: string; static readonly examples: string[]; static readonly requiresProject = true; static readonly flags: { loglevel: import("@oclif/core/interfaces").OptionFlag; 'api-version': import("@oclif/core/interfaces").OptionFlag; 'target-dev-hub': import("@oclif/core/interfaces").OptionFlag; package: import("@oclif/core/interfaces").OptionFlag; 'output-dir': import("@oclif/core/interfaces").OptionFlag; }; run(): Promise; }