import { Org } from '@salesforce/core';
export default class ScratchOrgInfoFetcher {
    private hubOrg;
    constructor(hubOrg: Org);
    getScratchOrgInfoByOrgId(orgId: string[]): Promise<ScratchOrgInfo[]>;
}
export interface ScratchOrgInfo {
    Id: string;
    ScratchOrg: string;
    Status: 'New' | 'Deleted' | 'Active' | 'Error';
}
