import { SfCommand } from '@salesforce/sf-plugins-core';
import { AnyJson } from '@salesforce/ts-types';
export default class GitPullRequestsExtract extends SfCommand<any> {
    static title: string;
    static description: string;
    static examples: string[];
    static flags: any;
    static requiresProject: boolean;
    protected outputFile: any;
    protected outputFilesRes: any;
    protected pullRequests: any[];
    protected targetBranch: string | null;
    protected minDateStr: Date | null;
    protected minDate: Date | null;
    protected prStatus: string | null;
    protected debugMode: boolean;
    run(): Promise<AnyJson>;
    private handleUserInput;
}
