import { Org } from '@salesforce/core';
import { PoolBaseImpl } from './PoolBaseImpl';
import ScratchOrg from '../ScratchOrg';
import { Logger } from '@flxbl-io/sfp-logger';
export default class PoolDeleteImpl extends PoolBaseImpl {
    private logger;
    private tag;
    private mypool;
    private allScratchOrgs;
    private inprogressonly;
    constructor(hubOrg: Org, tag: string, mypool: boolean, allScratchOrgs: boolean, inprogressonly: boolean, logger: Logger);
    protected onExec(): Promise<ScratchOrg[]>;
}
