import { SfCommand } from '@salesforce/sf-plugins-core'; type GithubCheckClosedResultItem = { issueUrl: string; status: string; workItem: string; }; export type GithubCheckClosedResult = GithubCheckClosedResultItem[]; export default class GithubCheckClosed extends SfCommand { static readonly summary: string; static readonly description: string; static readonly examples: string[]; static readonly flags: { gus: import("@oclif/core/interfaces").OptionFlag; 'github-token': import("@oclif/core/interfaces").OptionFlag; }; run(): Promise; } export {};