import { z } from "zod"; import type { McpTextContent, RequestContext, SdkContext, NormalizedEntitySnapshot } from "@cesteral/shared"; export declare const DeleteEntityInputSchema: z.ZodEffects; entityId: z.ZodString; advertiserId: z.ZodOptional; campaignId: z.ZodOptional; adGroupId: z.ZodOptional; reason: z.ZodOptional; dry_run: z.ZodDefault>; }, "strip", z.ZodTypeAny, { entityType: string; entityId: string; dry_run: boolean; advertiserId?: string | undefined; campaignId?: string | undefined; adGroupId?: string | undefined; reason?: string | undefined; }, { entityType: string; entityId: string; advertiserId?: string | undefined; campaignId?: string | undefined; adGroupId?: string | undefined; dry_run?: boolean | undefined; reason?: string | undefined; }>, { entityType: string; entityId: string; dry_run: boolean; advertiserId?: string | undefined; campaignId?: string | undefined; adGroupId?: string | undefined; reason?: string | undefined; }, { entityType: string; entityId: string; advertiserId?: string | undefined; campaignId?: string | undefined; adGroupId?: string | undefined; dry_run?: boolean | undefined; reason?: string | undefined; }>; export declare const DeleteEntityOutputSchema: z.ZodObject<{ confirmed: z.ZodBoolean; declineReason: z.ZodOptional; success: z.ZodBoolean; entityType: z.ZodString; entityId: z.ZodString; timestamp: z.ZodString; dryRun: z.ZodOptional>; before: z.ZodOptional>; after: z.ZodOptional>; dispatchedCapability: z.ZodType; }, "strip", z.ZodTypeAny, { entityType: string; timestamp: string; entityId: string; dispatchedCapability: import("@cesteral/contract-schema").DispatchedCapability; confirmed: boolean; success: boolean; dryRun?: import("@cesteral/contract-schema").DryRunResult | undefined; after?: NormalizedEntitySnapshot | undefined; before?: NormalizedEntitySnapshot | undefined; declineReason?: string | undefined; }, { entityType: string; timestamp: string; entityId: string; dispatchedCapability: import("@cesteral/contract-schema").DispatchedCapability; confirmed: boolean; success: boolean; dryRun?: import("@cesteral/contract-schema").DryRunResult | undefined; after?: NormalizedEntitySnapshot | undefined; before?: NormalizedEntitySnapshot | undefined; declineReason?: string | undefined; }>; type DeleteEntityInput = z.infer; type DeleteEntityOutput = z.infer; export declare function deleteEntityLogic(input: DeleteEntityInput, context: RequestContext, sdkContext?: SdkContext): Promise; export declare function deleteEntityResponseFormatter(result: DeleteEntityOutput): McpTextContent[]; export declare const deleteEntityTool: { name: string; title: string; description: string; inputSchema: z.ZodEffects; entityId: z.ZodString; advertiserId: z.ZodOptional; campaignId: z.ZodOptional; adGroupId: z.ZodOptional; reason: z.ZodOptional; dry_run: z.ZodDefault>; }, "strip", z.ZodTypeAny, { entityType: string; entityId: string; dry_run: boolean; advertiserId?: string | undefined; campaignId?: string | undefined; adGroupId?: string | undefined; reason?: string | undefined; }, { entityType: string; entityId: string; advertiserId?: string | undefined; campaignId?: string | undefined; adGroupId?: string | undefined; dry_run?: boolean | undefined; reason?: string | undefined; }>, { entityType: string; entityId: string; dry_run: boolean; advertiserId?: string | undefined; campaignId?: string | undefined; adGroupId?: string | undefined; reason?: string | undefined; }, { entityType: string; entityId: string; advertiserId?: string | undefined; campaignId?: string | undefined; adGroupId?: string | undefined; dry_run?: boolean | undefined; reason?: string | undefined; }>; outputSchema: z.ZodObject<{ confirmed: z.ZodBoolean; declineReason: z.ZodOptional; success: z.ZodBoolean; entityType: z.ZodString; entityId: z.ZodString; timestamp: z.ZodString; dryRun: z.ZodOptional>; before: z.ZodOptional>; after: z.ZodOptional>; dispatchedCapability: z.ZodType; }, "strip", z.ZodTypeAny, { entityType: string; timestamp: string; entityId: string; dispatchedCapability: import("@cesteral/contract-schema").DispatchedCapability; confirmed: boolean; success: boolean; dryRun?: import("@cesteral/contract-schema").DryRunResult | undefined; after?: NormalizedEntitySnapshot | undefined; before?: NormalizedEntitySnapshot | undefined; declineReason?: string | undefined; }, { entityType: string; timestamp: string; entityId: string; dispatchedCapability: import("@cesteral/contract-schema").DispatchedCapability; confirmed: boolean; success: boolean; dryRun?: import("@cesteral/contract-schema").DryRunResult | undefined; after?: NormalizedEntitySnapshot | undefined; before?: NormalizedEntitySnapshot | undefined; declineReason?: string | undefined; }>; annotations: { readOnlyHint: boolean; openWorldHint: boolean; destructiveHint: boolean; idempotentHint: boolean; cesteral: { kind: "write"; writeClass: "entity"; executableArgsExclude: string[]; platform: string; contractPlatformSlug: string; contractToolSlug: string; operation: "delete"[]; entityKinds: ("campaign" | "ad_group")[]; entityIdArgs: string[]; readPartner: { toolName: string; argMap: { entityId: string; entityType: string; advertiserId: string; campaignId: string; adGroupId: string; }; }; schemaVersion: number; contractId: string; supportsDryRun: true; supportsBeforeAfterSnapshot: true; requiresValidation: true; requiresSimulation: true; }; }; inputExamples: { label: string; input: { entityType: string; entityId: string; advertiserId: string; reason: string; }; }[]; logic: typeof deleteEntityLogic; responseFormatter: typeof deleteEntityResponseFormatter; }; export {}; //# sourceMappingURL=delete-entity.tool.d.ts.map