import { z } from "zod"; import type { McpTextContent, RequestContext, SdkContext, EffectResult, EffectDryRunResult, DispatchedCapability } from "@cesteral/shared"; export declare const BulkUpdateStatusInputSchema: z.ZodObject<{ entityType: z.ZodEnum<[string, ...string[]]>; entityIds: z.ZodArray; status: z.ZodEnum<["Available", "Paused", "Archived"]>; dry_run: z.ZodDefault>; }, "strip", z.ZodTypeAny, { status: "Archived" | "Available" | "Paused"; entityType: string; dry_run: boolean; entityIds: string[]; }, { status: "Archived" | "Available" | "Paused"; entityType: string; entityIds: string[]; dry_run?: boolean | undefined; }>; export declare const BulkUpdateStatusOutputSchema: z.ZodObject<{ confirmed: z.ZodBoolean; declineReason: z.ZodOptional; entityType: z.ZodString; targetStatus: z.ZodString; totalRequested: z.ZodNumber; successCount: z.ZodNumber; failureCount: z.ZodNumber; results: z.ZodArray>; error: z.ZodOptional; } & { entityId: z.ZodString; }, "strip", z.ZodTypeAny, { entityId: string; success: boolean; error?: string | undefined; entity?: Record | undefined; }, { entityId: string; success: boolean; error?: string | undefined; entity?: Record | undefined; }>, "many">; timestamp: z.ZodString; dryRun: z.ZodOptional>; effect: z.ZodOptional>; dispatchedCapability: z.ZodType; }, "strip", z.ZodTypeAny, { entityType: string; results: { entityId: string; success: boolean; error?: string | undefined; entity?: Record | undefined; }[]; timestamp: string; dispatchedCapability: DispatchedCapability; confirmed: boolean; totalRequested: number; successCount: number; failureCount: number; targetStatus: string; dryRun?: EffectDryRunResult | undefined; effect?: EffectResult | undefined; declineReason?: string | undefined; }, { entityType: string; results: { entityId: string; success: boolean; error?: string | undefined; entity?: Record | undefined; }[]; timestamp: string; dispatchedCapability: DispatchedCapability; confirmed: boolean; totalRequested: number; successCount: number; failureCount: number; targetStatus: string; dryRun?: EffectDryRunResult | undefined; effect?: EffectResult | undefined; declineReason?: string | undefined; }>; type BulkStatusInput = z.infer; type BulkStatusOutput = z.infer; export declare function bulkUpdateStatusLogic(input: BulkStatusInput, context: RequestContext, sdkContext?: SdkContext): Promise; export declare function bulkUpdateStatusResponseFormatter(result: BulkStatusOutput): McpTextContent[]; export declare const bulkUpdateStatusTool: { name: string; title: string; description: string; inputSchema: z.ZodObject<{ entityType: z.ZodEnum<[string, ...string[]]>; entityIds: z.ZodArray; status: z.ZodEnum<["Available", "Paused", "Archived"]>; dry_run: z.ZodDefault>; }, "strip", z.ZodTypeAny, { status: "Archived" | "Available" | "Paused"; entityType: string; dry_run: boolean; entityIds: string[]; }, { status: "Archived" | "Available" | "Paused"; entityType: string; entityIds: string[]; dry_run?: boolean | undefined; }>; outputSchema: z.ZodObject<{ confirmed: z.ZodBoolean; declineReason: z.ZodOptional; entityType: z.ZodString; targetStatus: z.ZodString; totalRequested: z.ZodNumber; successCount: z.ZodNumber; failureCount: z.ZodNumber; results: z.ZodArray>; error: z.ZodOptional; } & { entityId: z.ZodString; }, "strip", z.ZodTypeAny, { entityId: string; success: boolean; error?: string | undefined; entity?: Record | undefined; }, { entityId: string; success: boolean; error?: string | undefined; entity?: Record | undefined; }>, "many">; timestamp: z.ZodString; dryRun: z.ZodOptional>; effect: z.ZodOptional>; dispatchedCapability: z.ZodType; }, "strip", z.ZodTypeAny, { entityType: string; results: { entityId: string; success: boolean; error?: string | undefined; entity?: Record | undefined; }[]; timestamp: string; dispatchedCapability: DispatchedCapability; confirmed: boolean; totalRequested: number; successCount: number; failureCount: number; targetStatus: string; dryRun?: EffectDryRunResult | undefined; effect?: EffectResult | undefined; declineReason?: string | undefined; }, { entityType: string; results: { entityId: string; success: boolean; error?: string | undefined; entity?: Record | undefined; }[]; timestamp: string; dispatchedCapability: DispatchedCapability; confirmed: boolean; totalRequested: number; successCount: number; failureCount: number; targetStatus: 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: "bulk_job"[]; entityKinds: never[]; entityIdArgs: never[]; schemaVersion: number; contractId: string; supportsDryRun: true; supportsBeforeAfterSnapshot: false; requiresValidation: true; requiresSimulation: true; }; }; inputExamples: { label: string; input: { entityType: string; entityIds: string[]; status: string; }; }[]; logic: typeof bulkUpdateStatusLogic; responseFormatter: typeof bulkUpdateStatusResponseFormatter; }; export {}; //# sourceMappingURL=bulk-update-status.tool.d.ts.map