import { z } from "zod"; import type { RequestContext, McpTextContent, SdkContext, EffectResult, EffectDryRunResult, DispatchedCapability } from "@cesteral/shared"; export declare const BulkCreateEntitiesInputSchema: z.ZodObject<{ entityType: z.ZodEnum<[string, ...string[]]>; items: z.ZodArray, "many">; dry_run: z.ZodDefault>; }, "strip", z.ZodTypeAny, { entityType: string; dry_run: boolean; items: Record[]; }, { entityType: string; items: Record[]; dry_run?: boolean | undefined; }>; export declare const BulkCreateEntitiesOutputSchema: z.ZodObject<{ results: z.ZodArray>; error: z.ZodOptional; }, "strip", z.ZodTypeAny, { success: boolean; error?: string | undefined; entity?: Record | undefined; }, { 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: { success: boolean; error?: string | undefined; entity?: Record | undefined; }[]; timestamp: string; dispatchedCapability: DispatchedCapability; successCount: number; failureCount: number; dryRun?: EffectDryRunResult | undefined; effect?: EffectResult | undefined; }, { results: { success: boolean; error?: string | undefined; entity?: Record | undefined; }[]; timestamp: string; dispatchedCapability: DispatchedCapability; successCount: number; failureCount: number; dryRun?: EffectDryRunResult | undefined; effect?: EffectResult | undefined; }>; type BulkCreateEntitiesInput = z.infer; type BulkCreateEntitiesOutput = z.infer; export declare function bulkCreateEntitiesLogic(input: BulkCreateEntitiesInput, context: RequestContext, sdkContext?: SdkContext): Promise; export declare function bulkCreateEntitiesResponseFormatter(result: BulkCreateEntitiesOutput): McpTextContent[]; export declare const bulkCreateEntitiesTool: { name: string; title: string; description: string; inputSchema: z.ZodObject<{ entityType: z.ZodEnum<[string, ...string[]]>; items: z.ZodArray, "many">; dry_run: z.ZodDefault>; }, "strip", z.ZodTypeAny, { entityType: string; dry_run: boolean; items: Record[]; }, { entityType: string; items: Record[]; dry_run?: boolean | undefined; }>; outputSchema: z.ZodObject<{ results: z.ZodArray>; error: z.ZodOptional; }, "strip", z.ZodTypeAny, { success: boolean; error?: string | undefined; entity?: Record | undefined; }, { 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: { success: boolean; error?: string | undefined; entity?: Record | undefined; }[]; timestamp: string; dispatchedCapability: DispatchedCapability; successCount: number; failureCount: number; dryRun?: EffectDryRunResult | undefined; effect?: EffectResult | undefined; }, { results: { success: boolean; error?: string | undefined; entity?: Record | undefined; }[]; timestamp: string; dispatchedCapability: DispatchedCapability; successCount: number; failureCount: number; dryRun?: EffectDryRunResult | undefined; effect?: EffectResult | 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: { name: string; campaignGroup: string; account: string; type: string; objectiveType: string; status: string; }[]; }; }[]; logic: typeof bulkCreateEntitiesLogic; responseFormatter: typeof bulkCreateEntitiesResponseFormatter; }; export {}; //# sourceMappingURL=bulk-create-entities.tool.d.ts.map