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