export interface ScheduleCreateOptions { task?: string; all?: boolean; iteration?: string; at: string; name?: string; batchSize?: string; assignee?: string; type?: string; priority?: string; platform?: string; backend?: boolean; frontend?: boolean; } export declare function scheduleCreateCommand(options: ScheduleCreateOptions): Promise; export declare function scheduleListCommand(): Promise; export declare function scheduleCancelCommand(options: { id: string; }): Promise; export declare function scheduleDetailCommand(options: { id: string; }): Promise; export declare function scheduleDeleteCommand(options: { id: string; }): Promise; //# sourceMappingURL=schedule.d.ts.map