import { z } from "zod"; import type { McpTextContent, RequestContext, SdkContext, EffectResult, EffectDryRunResult, DispatchedCapability } from "@cesteral/shared"; export declare const UpdateReportScheduleInputSchema: z.ZodObject<{ scheduleId: z.ZodString; status: z.ZodEnum<["ACTIVE", "DISABLED"]>; dry_run: z.ZodDefault>; }, "strip", z.ZodTypeAny, { status: "ACTIVE" | "DISABLED"; dry_run: boolean; scheduleId: string; }, { status: "ACTIVE" | "DISABLED"; scheduleId: string; dry_run?: boolean | undefined; }>; export declare const UpdateReportScheduleOutputSchema: z.ZodObject<{ scheduleId: z.ZodString; status: z.ZodOptional; errors: z.ZodOptional; message: z.ZodString; }, "strip", z.ZodTypeAny, { message: string; field?: string | undefined; }, { message: string; field?: string | undefined; }>, "many">>; rawResponse: z.ZodOptional>; timestamp: z.ZodString; dryRun: z.ZodOptional>; effect: z.ZodOptional>; dispatchedCapability: z.ZodType; }, "strip", z.ZodTypeAny, { timestamp: string; dispatchedCapability: DispatchedCapability; scheduleId: string; status?: string | undefined; errors?: { message: string; field?: string | undefined; }[] | undefined; dryRun?: EffectDryRunResult | undefined; effect?: EffectResult | undefined; rawResponse?: Record | undefined; }, { timestamp: string; dispatchedCapability: DispatchedCapability; scheduleId: string; status?: string | undefined; errors?: { message: string; field?: string | undefined; }[] | undefined; dryRun?: EffectDryRunResult | undefined; effect?: EffectResult | undefined; rawResponse?: Record | undefined; }>; type UpdateReportScheduleInput = z.infer; type UpdateReportScheduleOutput = z.infer; export declare function updateReportScheduleLogic(input: UpdateReportScheduleInput, context: RequestContext, sdkContext?: SdkContext): Promise; export declare function updateReportScheduleResponseFormatter(result: UpdateReportScheduleOutput): McpTextContent[]; export declare const updateReportScheduleTool: { name: string; title: string; description: string; inputSchema: z.ZodObject<{ scheduleId: z.ZodString; status: z.ZodEnum<["ACTIVE", "DISABLED"]>; dry_run: z.ZodDefault>; }, "strip", z.ZodTypeAny, { status: "ACTIVE" | "DISABLED"; dry_run: boolean; scheduleId: string; }, { status: "ACTIVE" | "DISABLED"; scheduleId: string; dry_run?: boolean | undefined; }>; outputSchema: z.ZodObject<{ scheduleId: z.ZodString; status: z.ZodOptional; errors: z.ZodOptional; message: z.ZodString; }, "strip", z.ZodTypeAny, { message: string; field?: string | undefined; }, { message: string; field?: string | undefined; }>, "many">>; rawResponse: z.ZodOptional>; timestamp: z.ZodString; dryRun: z.ZodOptional>; effect: z.ZodOptional>; dispatchedCapability: z.ZodType; }, "strip", z.ZodTypeAny, { timestamp: string; dispatchedCapability: DispatchedCapability; scheduleId: string; status?: string | undefined; errors?: { message: string; field?: string | undefined; }[] | undefined; dryRun?: EffectDryRunResult | undefined; effect?: EffectResult | undefined; rawResponse?: Record | undefined; }, { timestamp: string; dispatchedCapability: DispatchedCapability; scheduleId: string; status?: string | undefined; errors?: { message: string; field?: string | undefined; }[] | undefined; dryRun?: EffectDryRunResult | undefined; effect?: EffectResult | undefined; rawResponse?: Record | undefined; }>; annotations: { readOnlyHint: boolean; destructiveHint: boolean; idempotentHint: boolean; openWorldHint: boolean; cesteral: { kind: "write"; writeClass: "effect"; executableArgsExclude: string[]; platform: string; contractPlatformSlug: string; contractToolSlug: string; operation: "update_schedule"[]; entityKinds: never[]; entityIdArgs: never[]; schemaVersion: number; contractId: string; supportsDryRun: true; supportsBeforeAfterSnapshot: false; requiresValidation: true; requiresSimulation: true; }; }; inputExamples: { label: string; input: { scheduleId: string; status: string; }; }[]; logic: typeof updateReportScheduleLogic; responseFormatter: typeof updateReportScheduleResponseFormatter; }; export {}; //# sourceMappingURL=update-report-schedule.tool.d.ts.map