import { z } from "zod"; import type { McpTextContent, RequestContext, SdkContext, EffectResult, EffectDryRunResult, DispatchedCapability } from "@cesteral/shared"; export declare const DeleteReportScheduleInputSchema: 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 DeleteReportScheduleOutputSchema: z.ZodObject<{ confirmed: z.ZodBoolean; declineReason: z.ZodOptional; scheduleId: z.ZodString; deleted: z.ZodBoolean; timestamp: z.ZodString; dryRun: z.ZodOptional>; effect: z.ZodOptional>; dispatchedCapability: z.ZodType; }, "strip", z.ZodTypeAny, { timestamp: string; deleted: boolean; dispatchedCapability: DispatchedCapability; confirmed: boolean; scheduleId: string; dryRun?: EffectDryRunResult | undefined; effect?: EffectResult | undefined; declineReason?: string | undefined; }, { timestamp: string; deleted: boolean; dispatchedCapability: DispatchedCapability; confirmed: boolean; scheduleId: string; dryRun?: EffectDryRunResult | undefined; effect?: EffectResult | undefined; declineReason?: string | undefined; }>; type DeleteReportScheduleInput = z.infer; type DeleteReportScheduleOutput = z.infer; export declare function deleteReportScheduleLogic(input: DeleteReportScheduleInput, context: RequestContext, sdkContext?: SdkContext): Promise; export declare function deleteReportScheduleResponseFormatter(result: DeleteReportScheduleOutput): McpTextContent[]; export declare const deleteReportScheduleTool: { 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<{ confirmed: z.ZodBoolean; declineReason: z.ZodOptional; scheduleId: z.ZodString; deleted: z.ZodBoolean; timestamp: z.ZodString; dryRun: z.ZodOptional>; effect: z.ZodOptional>; dispatchedCapability: z.ZodType; }, "strip", z.ZodTypeAny, { timestamp: string; deleted: boolean; dispatchedCapability: DispatchedCapability; confirmed: boolean; scheduleId: string; dryRun?: EffectDryRunResult | undefined; effect?: EffectResult | undefined; declineReason?: string | undefined; }, { timestamp: string; deleted: boolean; dispatchedCapability: DispatchedCapability; confirmed: boolean; scheduleId: string; dryRun?: EffectDryRunResult | undefined; effect?: EffectResult | undefined; declineReason?: string | undefined; }>; annotations: { readOnlyHint: boolean; openWorldHint: boolean; destructiveHint: boolean; idempotentHint: boolean; cesteral: { kind: "write"; writeClass: "effect"; executableArgsExclude: string[]; platform: string; contractPlatformSlug: string; contractToolSlug: string; operation: "delete_schedule"[]; entityKinds: never[]; entityIdArgs: never[]; schemaVersion: number; contractId: string; supportsDryRun: true; supportsBeforeAfterSnapshot: false; requiresValidation: true; requiresSimulation: true; }; }; inputExamples: { label: string; input: { scheduleId: string; }; }[]; logic: typeof deleteReportScheduleLogic; responseFormatter: typeof deleteReportScheduleResponseFormatter; }; export {}; //# sourceMappingURL=delete-report-schedule.tool.d.ts.map