import { z } from "zod"; export declare const ScheduleCreateRequestSchema: z.ZodObject<{ type: z.ZodLiteral<"schedule/create">; requestId: z.ZodString; prompt: z.ZodString; name: z.ZodOptional; cadence: z.ZodDiscriminatedUnion<[z.ZodObject<{ type: z.ZodLiteral<"every">; everyMs: z.ZodNumber; }, z.core.$strip>, z.ZodObject<{ type: z.ZodLiteral<"cron">; expression: z.ZodString; timezone: z.ZodOptional; }, z.core.$strip>], "type">; target: z.ZodDiscriminatedUnion<[z.ZodObject<{ type: z.ZodLiteral<"self">; agentId: z.ZodGUID; }, z.core.$strip>, z.ZodObject<{ type: z.ZodLiteral<"agent">; agentId: z.ZodGUID; }, z.core.$strip>, z.ZodObject<{ type: z.ZodLiteral<"new-agent">; config: z.ZodObject<{ provider: z.ZodString; cwd: z.ZodString; modeId: z.ZodOptional; model: z.ZodOptional; thinkingOptionId: z.ZodOptional; archiveOnFinish: z.ZodOptional; isolation: z.ZodOptional>; title: z.ZodOptional>; providerOptions: z.ZodOptional>; featureValues: z.ZodOptional>; systemPrompt: z.ZodOptional; mcpServers: z.ZodOptional>; }, z.core.$strip>; }, z.core.$strip>], "type">; maxRuns: z.ZodOptional; expiresAt: z.ZodOptional; runOnCreate: z.ZodOptional; }, z.core.$strip>; export declare const ScheduleListRequestSchema: z.ZodObject<{ type: z.ZodLiteral<"schedule/list">; requestId: z.ZodString; }, z.core.$strip>; export declare const ScheduleInspectRequestSchema: z.ZodObject<{ type: z.ZodLiteral<"schedule/inspect">; requestId: z.ZodString; scheduleId: z.ZodString; }, z.core.$strip>; export declare const ScheduleLogsRequestSchema: z.ZodObject<{ type: z.ZodLiteral<"schedule/logs">; requestId: z.ZodString; scheduleId: z.ZodString; }, z.core.$strip>; export declare const SchedulePauseRequestSchema: z.ZodObject<{ type: z.ZodLiteral<"schedule/pause">; requestId: z.ZodString; scheduleId: z.ZodString; }, z.core.$strip>; export declare const ScheduleResumeRequestSchema: z.ZodObject<{ type: z.ZodLiteral<"schedule/resume">; requestId: z.ZodString; scheduleId: z.ZodString; }, z.core.$strip>; export declare const ScheduleDeleteRequestSchema: z.ZodObject<{ type: z.ZodLiteral<"schedule/delete">; requestId: z.ZodString; scheduleId: z.ZodString; }, z.core.$strip>; export declare const ScheduleRunOnceRequestSchema: z.ZodObject<{ type: z.ZodLiteral<"schedule/run-once">; requestId: z.ZodString; scheduleId: z.ZodString; }, z.core.$strip>; export declare const ScheduleUpdateRequestSchema: z.ZodObject<{ type: z.ZodLiteral<"schedule/update">; requestId: z.ZodString; scheduleId: z.ZodString; name: z.ZodOptional>; prompt: z.ZodOptional; cadence: z.ZodOptional; everyMs: z.ZodNumber; }, z.core.$strip>, z.ZodObject<{ type: z.ZodLiteral<"cron">; expression: z.ZodString; timezone: z.ZodOptional; }, z.core.$strip>], "type">>; newAgentConfig: z.ZodOptional; model: z.ZodOptional>; modeId: z.ZodOptional>; thinkingOptionId: z.ZodOptional>; archiveOnFinish: z.ZodOptional; isolation: z.ZodOptional>; cwd: z.ZodOptional; }, z.core.$strip>>; maxRuns: z.ZodOptional>; expiresAt: z.ZodOptional>; }, z.core.$strip>; export declare const ScheduleCreateResponseSchema: z.ZodObject<{ type: z.ZodLiteral<"schedule/create/response">; payload: z.ZodObject<{ requestId: z.ZodString; schedule: z.ZodNullable; id: z.ZodString; status: z.ZodEnum<{ completed: "completed"; active: "active"; paused: "paused"; }>; createdAt: z.ZodString; updatedAt: z.ZodString; cadence: z.ZodDiscriminatedUnion<[z.ZodObject<{ type: z.ZodLiteral<"every">; everyMs: z.ZodNumber; }, z.core.$strip>, z.ZodObject<{ type: z.ZodLiteral<"cron">; expression: z.ZodString; timezone: z.ZodOptional; }, z.core.$strip>], "type">; target: z.ZodDiscriminatedUnion<[z.ZodObject<{ type: z.ZodLiteral<"agent">; agentId: z.ZodGUID; }, z.core.$strip>, z.ZodObject<{ type: z.ZodLiteral<"new-agent">; config: z.ZodObject<{ provider: z.ZodString; cwd: z.ZodString; modeId: z.ZodOptional; model: z.ZodOptional; thinkingOptionId: z.ZodOptional; archiveOnFinish: z.ZodOptional; isolation: z.ZodOptional>; title: z.ZodOptional>; providerOptions: z.ZodOptional>; featureValues: z.ZodOptional>; systemPrompt: z.ZodOptional; mcpServers: z.ZodOptional>; }, z.core.$strip>; }, z.core.$strip>], "type">; prompt: z.ZodString; nextRunAt: z.ZodNullable; lastRunAt: z.ZodNullable; pausedAt: z.ZodNullable; expiresAt: z.ZodNullable; maxRuns: z.ZodNullable; }, z.core.$strip>>; error: z.ZodNullable; }, z.core.$strip>; }, z.core.$strip>; export declare const ScheduleListResponseSchema: z.ZodObject<{ type: z.ZodLiteral<"schedule/list/response">; payload: z.ZodObject<{ requestId: z.ZodString; schedules: z.ZodArray; id: z.ZodString; status: z.ZodEnum<{ completed: "completed"; active: "active"; paused: "paused"; }>; createdAt: z.ZodString; updatedAt: z.ZodString; cadence: z.ZodDiscriminatedUnion<[z.ZodObject<{ type: z.ZodLiteral<"every">; everyMs: z.ZodNumber; }, z.core.$strip>, z.ZodObject<{ type: z.ZodLiteral<"cron">; expression: z.ZodString; timezone: z.ZodOptional; }, z.core.$strip>], "type">; target: z.ZodDiscriminatedUnion<[z.ZodObject<{ type: z.ZodLiteral<"agent">; agentId: z.ZodGUID; }, z.core.$strip>, z.ZodObject<{ type: z.ZodLiteral<"new-agent">; config: z.ZodObject<{ provider: z.ZodString; cwd: z.ZodString; modeId: z.ZodOptional; model: z.ZodOptional; thinkingOptionId: z.ZodOptional; archiveOnFinish: z.ZodOptional; isolation: z.ZodOptional>; title: z.ZodOptional>; providerOptions: z.ZodOptional>; featureValues: z.ZodOptional>; systemPrompt: z.ZodOptional; mcpServers: z.ZodOptional>; }, z.core.$strip>; }, z.core.$strip>], "type">; prompt: z.ZodString; nextRunAt: z.ZodNullable; lastRunAt: z.ZodNullable; pausedAt: z.ZodNullable; expiresAt: z.ZodNullable; maxRuns: z.ZodNullable; }, z.core.$strip>>; error: z.ZodNullable; }, z.core.$strip>; }, z.core.$strip>; export declare const ScheduleInspectResponseSchema: z.ZodObject<{ type: z.ZodLiteral<"schedule/inspect/response">; payload: z.ZodObject<{ requestId: z.ZodString; schedule: z.ZodNullable; prompt: z.ZodString; cadence: z.ZodDiscriminatedUnion<[z.ZodObject<{ type: z.ZodLiteral<"every">; everyMs: z.ZodNumber; }, z.core.$strip>, z.ZodObject<{ type: z.ZodLiteral<"cron">; expression: z.ZodString; timezone: z.ZodOptional; }, z.core.$strip>], "type">; target: z.ZodDiscriminatedUnion<[z.ZodObject<{ type: z.ZodLiteral<"agent">; agentId: z.ZodGUID; }, z.core.$strip>, z.ZodObject<{ type: z.ZodLiteral<"new-agent">; config: z.ZodObject<{ provider: z.ZodString; cwd: z.ZodString; modeId: z.ZodOptional; model: z.ZodOptional; thinkingOptionId: z.ZodOptional; archiveOnFinish: z.ZodOptional; isolation: z.ZodOptional>; title: z.ZodOptional>; providerOptions: z.ZodOptional>; featureValues: z.ZodOptional>; systemPrompt: z.ZodOptional; mcpServers: z.ZodOptional>; }, z.core.$strip>; }, z.core.$strip>], "type">; status: z.ZodEnum<{ completed: "completed"; active: "active"; paused: "paused"; }>; createdAt: z.ZodString; updatedAt: z.ZodString; nextRunAt: z.ZodNullable; lastRunAt: z.ZodNullable; pausedAt: z.ZodNullable; expiresAt: z.ZodNullable; maxRuns: z.ZodNullable; runs: z.ZodArray; status: z.ZodEnum<{ running: "running"; failed: "failed"; succeeded: "succeeded"; }>; agentId: z.ZodNullable; workspaceId: z.ZodOptional>; output: z.ZodNullable; error: z.ZodNullable; }, z.core.$strip>>; }, z.core.$strip>>; error: z.ZodNullable; }, z.core.$strip>; }, z.core.$strip>; export declare const ScheduleLogsResponseSchema: z.ZodObject<{ type: z.ZodLiteral<"schedule/logs/response">; payload: z.ZodObject<{ requestId: z.ZodString; runs: z.ZodArray; status: z.ZodEnum<{ running: "running"; failed: "failed"; succeeded: "succeeded"; }>; agentId: z.ZodNullable; workspaceId: z.ZodOptional>; output: z.ZodNullable; error: z.ZodNullable; }, z.core.$strip>>; error: z.ZodNullable; }, z.core.$strip>; }, z.core.$strip>; export declare const SchedulePauseResponseSchema: z.ZodObject<{ type: z.ZodLiteral<"schedule/pause/response">; payload: z.ZodObject<{ requestId: z.ZodString; schedule: z.ZodNullable; id: z.ZodString; status: z.ZodEnum<{ completed: "completed"; active: "active"; paused: "paused"; }>; createdAt: z.ZodString; updatedAt: z.ZodString; cadence: z.ZodDiscriminatedUnion<[z.ZodObject<{ type: z.ZodLiteral<"every">; everyMs: z.ZodNumber; }, z.core.$strip>, z.ZodObject<{ type: z.ZodLiteral<"cron">; expression: z.ZodString; timezone: z.ZodOptional; }, z.core.$strip>], "type">; target: z.ZodDiscriminatedUnion<[z.ZodObject<{ type: z.ZodLiteral<"agent">; agentId: z.ZodGUID; }, z.core.$strip>, z.ZodObject<{ type: z.ZodLiteral<"new-agent">; config: z.ZodObject<{ provider: z.ZodString; cwd: z.ZodString; modeId: z.ZodOptional; model: z.ZodOptional; thinkingOptionId: z.ZodOptional; archiveOnFinish: z.ZodOptional; isolation: z.ZodOptional>; title: z.ZodOptional>; providerOptions: z.ZodOptional>; featureValues: z.ZodOptional>; systemPrompt: z.ZodOptional; mcpServers: z.ZodOptional>; }, z.core.$strip>; }, z.core.$strip>], "type">; prompt: z.ZodString; nextRunAt: z.ZodNullable; lastRunAt: z.ZodNullable; pausedAt: z.ZodNullable; expiresAt: z.ZodNullable; maxRuns: z.ZodNullable; }, z.core.$strip>>; error: z.ZodNullable; }, z.core.$strip>; }, z.core.$strip>; export declare const ScheduleResumeResponseSchema: z.ZodObject<{ type: z.ZodLiteral<"schedule/resume/response">; payload: z.ZodObject<{ requestId: z.ZodString; schedule: z.ZodNullable; id: z.ZodString; status: z.ZodEnum<{ completed: "completed"; active: "active"; paused: "paused"; }>; createdAt: z.ZodString; updatedAt: z.ZodString; cadence: z.ZodDiscriminatedUnion<[z.ZodObject<{ type: z.ZodLiteral<"every">; everyMs: z.ZodNumber; }, z.core.$strip>, z.ZodObject<{ type: z.ZodLiteral<"cron">; expression: z.ZodString; timezone: z.ZodOptional; }, z.core.$strip>], "type">; target: z.ZodDiscriminatedUnion<[z.ZodObject<{ type: z.ZodLiteral<"agent">; agentId: z.ZodGUID; }, z.core.$strip>, z.ZodObject<{ type: z.ZodLiteral<"new-agent">; config: z.ZodObject<{ provider: z.ZodString; cwd: z.ZodString; modeId: z.ZodOptional; model: z.ZodOptional; thinkingOptionId: z.ZodOptional; archiveOnFinish: z.ZodOptional; isolation: z.ZodOptional>; title: z.ZodOptional>; providerOptions: z.ZodOptional>; featureValues: z.ZodOptional>; systemPrompt: z.ZodOptional; mcpServers: z.ZodOptional>; }, z.core.$strip>; }, z.core.$strip>], "type">; prompt: z.ZodString; nextRunAt: z.ZodNullable; lastRunAt: z.ZodNullable; pausedAt: z.ZodNullable; expiresAt: z.ZodNullable; maxRuns: z.ZodNullable; }, z.core.$strip>>; error: z.ZodNullable; }, z.core.$strip>; }, z.core.$strip>; export declare const ScheduleDeleteResponseSchema: z.ZodObject<{ type: z.ZodLiteral<"schedule/delete/response">; payload: z.ZodObject<{ requestId: z.ZodString; scheduleId: z.ZodString; error: z.ZodNullable; }, z.core.$strip>; }, z.core.$strip>; export declare const ScheduleRunOnceResponseSchema: z.ZodObject<{ type: z.ZodLiteral<"schedule/run-once/response">; payload: z.ZodObject<{ requestId: z.ZodString; schedule: z.ZodNullable; prompt: z.ZodString; cadence: z.ZodDiscriminatedUnion<[z.ZodObject<{ type: z.ZodLiteral<"every">; everyMs: z.ZodNumber; }, z.core.$strip>, z.ZodObject<{ type: z.ZodLiteral<"cron">; expression: z.ZodString; timezone: z.ZodOptional; }, z.core.$strip>], "type">; target: z.ZodDiscriminatedUnion<[z.ZodObject<{ type: z.ZodLiteral<"agent">; agentId: z.ZodGUID; }, z.core.$strip>, z.ZodObject<{ type: z.ZodLiteral<"new-agent">; config: z.ZodObject<{ provider: z.ZodString; cwd: z.ZodString; modeId: z.ZodOptional; model: z.ZodOptional; thinkingOptionId: z.ZodOptional; archiveOnFinish: z.ZodOptional; isolation: z.ZodOptional>; title: z.ZodOptional>; providerOptions: z.ZodOptional>; featureValues: z.ZodOptional>; systemPrompt: z.ZodOptional; mcpServers: z.ZodOptional>; }, z.core.$strip>; }, z.core.$strip>], "type">; status: z.ZodEnum<{ completed: "completed"; active: "active"; paused: "paused"; }>; createdAt: z.ZodString; updatedAt: z.ZodString; nextRunAt: z.ZodNullable; lastRunAt: z.ZodNullable; pausedAt: z.ZodNullable; expiresAt: z.ZodNullable; maxRuns: z.ZodNullable; runs: z.ZodArray; status: z.ZodEnum<{ running: "running"; failed: "failed"; succeeded: "succeeded"; }>; agentId: z.ZodNullable; workspaceId: z.ZodOptional>; output: z.ZodNullable; error: z.ZodNullable; }, z.core.$strip>>; }, z.core.$strip>>; error: z.ZodNullable; }, z.core.$strip>; }, z.core.$strip>; export declare const ScheduleUpdateResponseSchema: z.ZodObject<{ type: z.ZodLiteral<"schedule/update/response">; payload: z.ZodObject<{ requestId: z.ZodString; schedule: z.ZodNullable; prompt: z.ZodString; cadence: z.ZodDiscriminatedUnion<[z.ZodObject<{ type: z.ZodLiteral<"every">; everyMs: z.ZodNumber; }, z.core.$strip>, z.ZodObject<{ type: z.ZodLiteral<"cron">; expression: z.ZodString; timezone: z.ZodOptional; }, z.core.$strip>], "type">; target: z.ZodDiscriminatedUnion<[z.ZodObject<{ type: z.ZodLiteral<"agent">; agentId: z.ZodGUID; }, z.core.$strip>, z.ZodObject<{ type: z.ZodLiteral<"new-agent">; config: z.ZodObject<{ provider: z.ZodString; cwd: z.ZodString; modeId: z.ZodOptional; model: z.ZodOptional; thinkingOptionId: z.ZodOptional; archiveOnFinish: z.ZodOptional; isolation: z.ZodOptional>; title: z.ZodOptional>; providerOptions: z.ZodOptional>; featureValues: z.ZodOptional>; systemPrompt: z.ZodOptional; mcpServers: z.ZodOptional>; }, z.core.$strip>; }, z.core.$strip>], "type">; status: z.ZodEnum<{ completed: "completed"; active: "active"; paused: "paused"; }>; createdAt: z.ZodString; updatedAt: z.ZodString; nextRunAt: z.ZodNullable; lastRunAt: z.ZodNullable; pausedAt: z.ZodNullable; expiresAt: z.ZodNullable; maxRuns: z.ZodNullable; runs: z.ZodArray; status: z.ZodEnum<{ running: "running"; failed: "failed"; succeeded: "succeeded"; }>; agentId: z.ZodNullable; workspaceId: z.ZodOptional>; output: z.ZodNullable; error: z.ZodNullable; }, z.core.$strip>>; }, z.core.$strip>>; error: z.ZodNullable; }, z.core.$strip>; }, z.core.$strip>; //# sourceMappingURL=rpc-schemas.d.ts.map