import { SfCommand } from '@salesforce/sf-plugins-core'; import { PackagePushRequestListResult } from '@salesforce/packaging'; export type PackagePushRequestListResultArr = PackagePushRequestListResult[]; export declare class PackagePushRequestListCommand extends SfCommand { static readonly summary: string; static readonly description: string; static readonly examples: string[]; static readonly aliases: string[]; static readonly flags: { 'target-dev-hub': import("@oclif/core/interfaces").OptionFlag; 'api-version': import("@oclif/core/interfaces").OptionFlag; package: import("@oclif/core/interfaces").OptionFlag; 'scheduled-last-days': import("@oclif/core/interfaces").OptionFlag; status: import("@oclif/core/interfaces").OptionFlag; 'show-push-migrations-only': import("@oclif/core/interfaces").BooleanFlag; }; run(): Promise; }