import { z } from "zod"; import type { McpTextContent, RequestContext, SdkContext, EffectResult, EffectDryRunResult, DispatchedCapability } from "@cesteral/shared"; export declare const RerunReportScheduleInputSchema: z.ZodObject<{ scheduleId: z.ZodString; dry_run: z.ZodDefault>; }, "strip", z.ZodTypeAny, { dry_run: boolean; scheduleId: string; }, { scheduleId: string; dry_run?: boolean | undefined; }>; export declare const RerunReportScheduleOutputSchema: z.ZodObject<{ scheduleId: z.ZodString; newExecutionData: 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; errors?: { message: string; field?: string | undefined; }[] | undefined; dryRun?: EffectDryRunResult | undefined; effect?: EffectResult | undefined; rawResponse?: Record | undefined; newExecutionData?: unknown; }, { timestamp: string; dispatchedCapability: DispatchedCapability; scheduleId: string; errors?: { message: string; field?: string | undefined; }[] | undefined; dryRun?: EffectDryRunResult | undefined; effect?: EffectResult | undefined; rawResponse?: Record | undefined; newExecutionData?: unknown; }>; type RerunReportScheduleInput = z.infer; type RerunReportScheduleOutput = z.infer; export declare function rerunReportScheduleLogic(input: RerunReportScheduleInput, context: RequestContext, sdkContext?: SdkContext): Promise; export declare function rerunReportScheduleResponseFormatter(result: RerunReportScheduleOutput): McpTextContent[]; export declare const rerunReportScheduleTool: { name: string; title: string; description: string; inputSchema: z.ZodObject<{ scheduleId: z.ZodString; dry_run: z.ZodDefault>; }, "strip", z.ZodTypeAny, { dry_run: boolean; scheduleId: string; }, { scheduleId: string; dry_run?: boolean | undefined; }>; outputSchema: z.ZodObject<{ scheduleId: z.ZodString; newExecutionData: 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; errors?: { message: string; field?: string | undefined; }[] | undefined; dryRun?: EffectDryRunResult | undefined; effect?: EffectResult | undefined; rawResponse?: Record | undefined; newExecutionData?: unknown; }, { timestamp: string; dispatchedCapability: DispatchedCapability; scheduleId: string; errors?: { message: string; field?: string | undefined; }[] | undefined; dryRun?: EffectDryRunResult | undefined; effect?: EffectResult | undefined; rawResponse?: Record | undefined; newExecutionData?: unknown; }>; annotations: { readOnlyHint: boolean; destructiveHint: boolean; idempotentHint: boolean; openWorldHint: boolean; cesteral: { kind: "write"; writeClass: "effect"; executableArgsExclude: string[]; platform: string; contractPlatformSlug: string; contractToolSlug: string; operation: "submit_report"[]; entityKinds: never[]; entityIdArgs: never[]; schemaVersion: number; contractId: string; supportsDryRun: true; supportsBeforeAfterSnapshot: false; requiresValidation: true; requiresSimulation: true; }; }; inputExamples: { label: string; input: { scheduleId: string; }; }[]; logic: typeof rerunReportScheduleLogic; responseFormatter: typeof rerunReportScheduleResponseFormatter; }; export {}; //# sourceMappingURL=rerun-report-schedule.tool.d.ts.map