import { SfCommand } from '@salesforce/sf-plugins-core';
export type ScratchDeleteResponse = {
    orgId: string;
    username: string;
};
export default class DeleteScratch extends SfCommand<ScratchDeleteResponse> {
    static readonly summary: string;
    static readonly description: string;
    static readonly examples: string[];
    static readonly aliases: string[];
    static readonly deprecateAliases = true;
    static readonly flags: {
        'target-org': import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
        'no-prompt': import("@oclif/core/interfaces").BooleanFlag<boolean>;
    };
    run(): Promise<ScratchDeleteResponse>;
}
