import { Org } from '@salesforce/core';
import { PoolBaseImpl } from './PoolBaseImpl';
import ScratchOrg from '../ScratchOrg';
export default class PoolListImpl extends PoolBaseImpl {
    private tag;
    private allScratchOrgs;
    constructor(hubOrg: Org, tag: string, allScratchOrgs: boolean);
    protected onExec(): Promise<ScratchOrg[]>;
}
