import { Org } from '@salesforce/core';
import { PoolBaseImpl } from './PoolBaseImpl';
export default class PoolOrgDeleteImpl extends PoolBaseImpl {
    username: string;
    constructor(hubOrg: Org, username: string);
    protected onExec(): Promise<void>;
}
