import { z } from "zod"; import type { McpTextContent, RequestContext, SdkContext, EffectResult, EffectDryRunResult, DispatchedCapability } from "@cesteral/shared"; export declare const BulkCreateEntitiesInputSchema: z.ZodEffects; advertiserId: z.ZodOptional; campaignId: z.ZodOptional; items: z.ZodArray, "many">; dry_run: z.ZodDefault>; }, "strip", z.ZodTypeAny, { entityType: string; dry_run: boolean; items: Record[]; advertiserId?: string | undefined; campaignId?: string | undefined; }, { entityType: string; items: Record[]; advertiserId?: string | undefined; campaignId?: string | undefined; dry_run?: boolean | undefined; }>, { entityType: string; dry_run: boolean; items: Record[]; advertiserId?: string | undefined; campaignId?: string | undefined; }, { entityType: string; items: Record[]; advertiserId?: string | undefined; campaignId?: string | undefined; dry_run?: boolean | undefined; }>; export declare const BulkCreateEntitiesOutputSchema: z.ZodObject<{ entityType: z.ZodString; totalRequested: z.ZodNumber; successCount: z.ZodNumber; failureCount: z.ZodNumber; 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">; timestamp: z.ZodString; dryRun: z.ZodOptional>; effect: z.ZodOptional>; dispatchedCapability: z.ZodType; }, "strip", z.ZodTypeAny, { entityType: string; results: { success: boolean; error?: string | undefined; entity?: Record | undefined; }[]; timestamp: string; dispatchedCapability: DispatchedCapability; totalRequested: number; successCount: number; failureCount: number; dryRun?: EffectDryRunResult | undefined; effect?: EffectResult | undefined; }, { entityType: string; results: { success: boolean; error?: string | undefined; entity?: Record | undefined; }[]; timestamp: string; dispatchedCapability: DispatchedCapability; totalRequested: number; successCount: number; failureCount: number; dryRun?: EffectDryRunResult | undefined; effect?: EffectResult | undefined; }>; type BulkCreateInput = z.infer; type BulkCreateOutput = z.infer; export declare function bulkCreateEntitiesLogic(input: BulkCreateInput, context: RequestContext, sdkContext?: SdkContext): Promise; export declare function bulkCreateEntitiesResponseFormatter(result: BulkCreateOutput): McpTextContent[]; export declare const bulkCreateEntitiesTool: { name: string; title: string; description: string; inputSchema: z.ZodEffects; advertiserId: z.ZodOptional; campaignId: z.ZodOptional; items: z.ZodArray, "many">; dry_run: z.ZodDefault>; }, "strip", z.ZodTypeAny, { entityType: string; dry_run: boolean; items: Record[]; advertiserId?: string | undefined; campaignId?: string | undefined; }, { entityType: string; items: Record[]; advertiserId?: string | undefined; campaignId?: string | undefined; dry_run?: boolean | undefined; }>, { entityType: string; dry_run: boolean; items: Record[]; advertiserId?: string | undefined; campaignId?: string | undefined; }, { entityType: string; items: Record[]; advertiserId?: string | undefined; campaignId?: string | undefined; dry_run?: boolean | undefined; }>; outputSchema: z.ZodObject<{ entityType: z.ZodString; totalRequested: z.ZodNumber; successCount: z.ZodNumber; failureCount: z.ZodNumber; 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">; timestamp: z.ZodString; dryRun: z.ZodOptional>; effect: z.ZodOptional>; dispatchedCapability: z.ZodType; }, "strip", z.ZodTypeAny, { entityType: string; results: { success: boolean; error?: string | undefined; entity?: Record | undefined; }[]; timestamp: string; dispatchedCapability: DispatchedCapability; totalRequested: number; successCount: number; failureCount: number; dryRun?: EffectDryRunResult | undefined; effect?: EffectResult | undefined; }, { entityType: string; results: { success: boolean; error?: string | undefined; entity?: Record | undefined; }[]; timestamp: string; dispatchedCapability: DispatchedCapability; totalRequested: number; successCount: number; failureCount: number; dryRun?: EffectDryRunResult | undefined; effect?: EffectResult | 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; advertiserId: string; items: { CampaignName: string; Budget: { Amount: number; CurrencyCode: string; }; StartDate: string; EndDate: string; PacingMode: string; }[]; campaignId?: undefined; }; } | { label: string; input: { entityType: string; advertiserId: string; campaignId: string; items: { AdGroupName: string; RTBAttributes: { BudgetSettings: { DailyBudget: { Amount: number; CurrencyCode: string; }; }; BaseBidCPM: { Amount: number; CurrencyCode: string; }; }; }[]; }; })[]; logic: typeof bulkCreateEntitiesLogic; responseFormatter: typeof bulkCreateEntitiesResponseFormatter; }; export {}; //# sourceMappingURL=bulk-create-entities.tool.d.ts.map