import { ExecRenderBaseCommand } from "../../../lib/basecommands/ExecRenderBaseCommand.js"; import { ReactNode } from "react"; type Result = { projectBackupScheduleId: string; }; export declare class Create extends ExecRenderBaseCommand { static summary: string; static flags: { description: import("@oclif/core/interfaces").OptionFlag; schedule: import("@oclif/core/interfaces").OptionFlag; ttl: import("@oclif/core/interfaces").OptionFlag; quiet: import("@oclif/core/interfaces").BooleanFlag; "project-id": import("@oclif/core/interfaces").OptionFlag; }; protected exec(): Promise; protected render({ projectBackupScheduleId }: Result): ReactNode; } export {};