import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import * as operations from "../models/operations/index.js"; export declare class AgentSchedules extends ClientSDK { /** * List schedules for an agent */ listAgentSchedules(request: operations.ListAgentSchedulesRequest, options?: RequestOptions): Promise; /** * Create an agent schedule * * @remarks * Creates a Temporal-backed one-time, interval, or cron schedule that starts normal saved agent runs. */ createAgentSchedule(request: operations.CreateAgentScheduleRequest, options?: RequestOptions): Promise; /** * Retrieve an agent schedule */ getAgentSchedule(request: operations.GetAgentScheduleRequest, options?: RequestOptions): Promise; /** * Update an agent schedule */ updateAgentSchedule(request: operations.UpdateAgentScheduleRequest, options?: RequestOptions): Promise; /** * Delete an agent schedule */ deleteAgentSchedule(request: operations.DeleteAgentScheduleRequest, options?: RequestOptions): Promise; /** * Pause an agent schedule */ pauseAgentSchedule(request: operations.PauseAgentScheduleRequest, options?: RequestOptions): Promise; /** * Resume an agent schedule */ resumeAgentSchedule(request: operations.ResumeAgentScheduleRequest, options?: RequestOptions): Promise; } //# sourceMappingURL=agentschedules.d.ts.map