import { SfCommand } from '@salesforce/sf-plugins-core';
import { AnyJson } from '@salesforce/ts-types';
export default class SandboxCreate extends SfCommand<any> {
    static title: string;
    static description: string;
    static examples: string[];
    static flags: any;
    protected static supportsDevhubUsername: boolean;
    static requiresProject: boolean;
    protected static requiresSfdxPlugins: string[];
    protected debugMode: boolean;
    protected configInfo: any;
    protected devHubAlias: string;
    protected sandboxOrgAlias: string;
    protected userEmail: string;
    protected gitBranch: string;
    protected projectSandboxDef: any;
    protected sandboxOrgInfo: any;
    protected sandboxOrgUsername: string;
    protected sandboxOrgSfdxAuthUrl: string;
    protected authFileJson: any;
    protected projectName: string;
    protected sandboxOrgFromPool: any;
    run(): Promise<AnyJson>;
    initConfig(): Promise<void>;
    createSandboxOrg(): Promise<void>;
    buildSandboxCreateErrorMessage(createResult: any): string;
    updateSandboxOrgUser(): Promise<void>;
}
