import { ExecRenderBaseCommand } from "../../lib/basecommands/ExecRenderBaseCommand.js"; import { ReactNode } from "react"; type CreateResult = { backupId: string; }; export declare class Create extends ExecRenderBaseCommand { static summary: string; static flags: { wait: import("@oclif/core/interfaces").BooleanFlag; "wait-timeout": import("@oclif/core/interfaces").OptionFlag; expires: import("@oclif/core/interfaces").OptionFlag; description: import("@oclif/core/interfaces").OptionFlag; "project-id": import("@oclif/core/interfaces").OptionFlag; quiet: import("@oclif/core/interfaces").BooleanFlag; }; static aliases: string[]; static deprecateAliases: boolean; protected exec(): Promise; protected render(executionResult: CreateResult): ReactNode; } export {};