import { BaseCommand } from "./BaseCommand.js"; import { ExecRenderBaseCommand } from "./ExecRenderBaseCommand.js"; export declare abstract class DeleteBaseCommand extends ExecRenderBaseCommand { static resourceName: string; static baseFlags: { force: import("@oclif/core/interfaces").BooleanFlag; quiet: import("@oclif/core/interfaces").BooleanFlag; token: import("@oclif/core/interfaces").OptionFlag; }; protected exec(): Promise; protected render(): null; protected abstract deleteResource(): Promise; }