import { ExecRenderBaseCommand } from "../../lib/basecommands/ExecRenderBaseCommand.js"; import { ReactNode } from "react"; type Result = { stackId: string; }; export default class SetUpdateSchedule extends ExecRenderBaseCommand { static description: string; static args: { "stack-id": import("@oclif/core/interfaces").Arg>; schedule: import("@oclif/core/interfaces").Arg>; }; static flags: { timezone: import("@oclif/core/interfaces").OptionFlag; quiet: import("@oclif/core/interfaces").BooleanFlag; token: import("@oclif/core/interfaces").OptionFlag; }; protected exec(): Promise; protected render({ stackId }: Result): ReactNode; } export {};