import { SfCommand } from '@salesforce/sf-plugins-core';
import { AnyJson } from '@salesforce/ts-types';
export default class MultiOrgQuery extends SfCommand<any> {
    static title: string;
    static description: string;
    static examples: string[];
    static flags: any;
    protected allQueryTemplates: any;
    protected query: string;
    protected queryTemplate: string;
    protected targetOrgsIds: string[];
    protected targetOrgs: any[];
    protected outputFile: any;
    protected debugMode: boolean;
    protected allRecords: any[];
    protected successOrgs: any[];
    protected errorOrgs: any[];
    run(): Promise<AnyJson>;
    private displayResults;
    private performQueries;
    private manageSelectOrgs;
    private defineSoqlQuery;
}
