import { z } from "zod"; import type { RequestContext, McpTextContent, SdkContext, EffectResult, EffectDryRunResult, DispatchedCapability } from "@cesteral/shared"; export declare const BulkUpdateEntitiesInputSchema: z.ZodObject<{ entityType: z.ZodEnum<[string, ...string[]]>; items: z.ZodArray; }, "strip", z.ZodTypeAny, { entityUrn: string; data: Record; }, { entityUrn: string; data: Record; }>, "many">; dry_run: z.ZodDefault>; }, "strip", z.ZodTypeAny, { entityType: string; dry_run: boolean; items: { entityUrn: string; data: Record; }[]; }, { entityType: string; items: { entityUrn: string; data: Record; }[]; dry_run?: boolean | undefined; }>; export declare const BulkUpdateEntitiesOutputSchema: z.ZodObject<{ confirmed: z.ZodBoolean; declineReason: z.ZodOptional; results: z.ZodArray>; error: z.ZodOptional; } & { entityUrn: z.ZodString; }, "strip", z.ZodTypeAny, { entityUrn: string; success: boolean; error?: string | undefined; entity?: Record | undefined; }, { entityUrn: string; success: boolean; error?: string | undefined; entity?: Record | undefined; }>, "many">; successCount: z.ZodNumber; failureCount: z.ZodNumber; timestamp: z.ZodString; dryRun: z.ZodOptional>; effect: z.ZodOptional>; dispatchedCapability: z.ZodType; }, "strip", z.ZodTypeAny, { results: { entityUrn: string; success: boolean; error?: string | undefined; entity?: Record | undefined; }[]; timestamp: string; dispatchedCapability: DispatchedCapability; confirmed: boolean; successCount: number; failureCount: number; dryRun?: EffectDryRunResult | undefined; effect?: EffectResult | undefined; declineReason?: string | undefined; }, { results: { entityUrn: string; success: boolean; error?: string | undefined; entity?: Record | undefined; }[]; timestamp: string; dispatchedCapability: DispatchedCapability; confirmed: boolean; successCount: number; failureCount: number; dryRun?: EffectDryRunResult | undefined; effect?: EffectResult | undefined; declineReason?: string | undefined; }>; type BulkUpdateEntitiesInput = z.infer; type BulkUpdateEntitiesOutput = z.infer; export declare function bulkUpdateEntitiesLogic(input: BulkUpdateEntitiesInput, context: RequestContext, sdkContext?: SdkContext): Promise; export declare function bulkUpdateEntitiesResponseFormatter(result: BulkUpdateEntitiesOutput): McpTextContent[]; export declare const bulkUpdateEntitiesTool: { name: string; title: string; description: string; inputSchema: z.ZodObject<{ entityType: z.ZodEnum<[string, ...string[]]>; items: z.ZodArray; }, "strip", z.ZodTypeAny, { entityUrn: string; data: Record; }, { entityUrn: string; data: Record; }>, "many">; dry_run: z.ZodDefault>; }, "strip", z.ZodTypeAny, { entityType: string; dry_run: boolean; items: { entityUrn: string; data: Record; }[]; }, { entityType: string; items: { entityUrn: string; data: Record; }[]; dry_run?: boolean | undefined; }>; outputSchema: z.ZodObject<{ confirmed: z.ZodBoolean; declineReason: z.ZodOptional; results: z.ZodArray>; error: z.ZodOptional; } & { entityUrn: z.ZodString; }, "strip", z.ZodTypeAny, { entityUrn: string; success: boolean; error?: string | undefined; entity?: Record | undefined; }, { entityUrn: string; success: boolean; error?: string | undefined; entity?: Record | undefined; }>, "many">; successCount: z.ZodNumber; failureCount: z.ZodNumber; timestamp: z.ZodString; dryRun: z.ZodOptional>; effect: z.ZodOptional>; dispatchedCapability: z.ZodType; }, "strip", z.ZodTypeAny, { results: { entityUrn: string; success: boolean; error?: string | undefined; entity?: Record | undefined; }[]; timestamp: string; dispatchedCapability: DispatchedCapability; confirmed: boolean; successCount: number; failureCount: number; dryRun?: EffectDryRunResult | undefined; effect?: EffectResult | undefined; declineReason?: string | undefined; }, { results: { entityUrn: string; success: boolean; error?: string | undefined; entity?: Record | undefined; }[]; timestamp: string; dispatchedCapability: DispatchedCapability; confirmed: boolean; successCount: number; failureCount: number; dryRun?: EffectDryRunResult | undefined; effect?: EffectResult | undefined; declineReason?: string | undefined; }>; annotations: { readOnlyHint: boolean; openWorldHint: boolean; idempotentHint: boolean; destructiveHint: 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; items: { entityUrn: string; data: { dailyBudget: { amount: string; currencyCode: string; }; }; }[]; }; }[]; logic: typeof bulkUpdateEntitiesLogic; responseFormatter: typeof bulkUpdateEntitiesResponseFormatter; }; export {}; //# sourceMappingURL=bulk-update-entities.tool.d.ts.map