import { FlagsConfig, SfdxCommand } from '@salesforce/command';
import { AnyJson } from '@salesforce/ts-types';
export declare class OrgCreateCommand extends SfdxCommand {
    static readonly help: string;
    static readonly description: string;
    static readonly showProgress = true;
    static readonly supportsDevhubUsername = true;
    static readonly supportsUsername = true;
    static readonly varargs = true;
    static readonly orgType: string;
    static readonly flagsConfig: FlagsConfig;
    protected readonly lifecycleEventNames: string[];
    readJsonDefFile(): Promise<AnyJson>;
    run(): Promise<unknown>;
}
