export interface ScheduleNewOpts { cron?: string; kind?: string; channel?: string; } /** * §9.6 — `schedules new `: scaffold `schedules/.yaml` + `.md`. The * schedule domain previously had no create path (users hand-wrote both files). * The yaml is machine-generated and the result is validated before reporting * success. Authoring the prompt body from intent is a conversational job — * ask Chief in `solosquad chat` (the asset-review / author skills). */ export declare function scheduleNewCommand(id: string | undefined, opts?: ScheduleNewOpts): Promise; export declare function scheduleListCommand(): Promise; export declare function scheduleShowCommand(id: string): Promise; export declare function scheduleValidateCommand(): Promise;