import { z } from "zod"; import type { RequestContext, McpTextContent, SdkContext, EffectResult, EffectDryRunResult, DispatchedCapability } from "@cesteral/shared"; export declare const AdjustBidsInputSchema: z.ZodObject<{ adjustments: z.ZodArray, "many">; reason: z.ZodOptional; dry_run: z.ZodDefault>; }, "strip", z.ZodTypeAny, { dry_run: boolean; adjustments: { amount: string; currencyCode: string; campaignUrn: string; }[]; reason?: string | undefined; }, { adjustments: { amount: string; currencyCode: string; campaignUrn: string; }[]; dry_run?: boolean | undefined; reason?: string | undefined; }>; export declare const AdjustBidsOutputSchema: z.ZodObject<{ confirmed: z.ZodBoolean; declineReason: z.ZodOptional; totalRequested: z.ZodNumber; totalSucceeded: z.ZodNumber; totalFailed: z.ZodNumber; results: z.ZodArray; currencyCode: z.ZodOptional; error: z.ZodOptional; }, "strip", z.ZodTypeAny, { success: boolean; campaignUrn: string; error?: string | undefined; currencyCode?: string | undefined; newAmount?: string | undefined; }, { success: boolean; campaignUrn: string; error?: string | undefined; currencyCode?: string | undefined; newAmount?: string | undefined; }>, "many">; timestamp: z.ZodString; dryRun: z.ZodOptional>; effect: z.ZodOptional>; dispatchedCapability: z.ZodType; }, "strip", z.ZodTypeAny, { results: { success: boolean; campaignUrn: string; error?: string | undefined; currencyCode?: string | undefined; newAmount?: string | undefined; }[]; timestamp: string; dispatchedCapability: DispatchedCapability; confirmed: boolean; totalRequested: number; totalSucceeded: number; totalFailed: number; dryRun?: EffectDryRunResult | undefined; effect?: EffectResult | undefined; declineReason?: string | undefined; }, { results: { success: boolean; campaignUrn: string; error?: string | undefined; currencyCode?: string | undefined; newAmount?: string | undefined; }[]; timestamp: string; dispatchedCapability: DispatchedCapability; confirmed: boolean; totalRequested: number; totalSucceeded: number; totalFailed: number; dryRun?: EffectDryRunResult | undefined; effect?: EffectResult | undefined; declineReason?: string | undefined; }>; type AdjustBidsInput = z.infer; type AdjustBidsOutput = z.infer; export declare function adjustBidsLogic(input: AdjustBidsInput, context: RequestContext, sdkContext?: SdkContext): Promise; export declare function adjustBidsResponseFormatter(result: AdjustBidsOutput): McpTextContent[]; export declare const adjustBidsTool: { name: string; title: string; description: string; inputSchema: z.ZodObject<{ adjustments: z.ZodArray, "many">; reason: z.ZodOptional; dry_run: z.ZodDefault>; }, "strip", z.ZodTypeAny, { dry_run: boolean; adjustments: { amount: string; currencyCode: string; campaignUrn: string; }[]; reason?: string | undefined; }, { adjustments: { amount: string; currencyCode: string; campaignUrn: string; }[]; dry_run?: boolean | undefined; reason?: string | undefined; }>; outputSchema: z.ZodObject<{ confirmed: z.ZodBoolean; declineReason: z.ZodOptional; totalRequested: z.ZodNumber; totalSucceeded: z.ZodNumber; totalFailed: z.ZodNumber; results: z.ZodArray; currencyCode: z.ZodOptional; error: z.ZodOptional; }, "strip", z.ZodTypeAny, { success: boolean; campaignUrn: string; error?: string | undefined; currencyCode?: string | undefined; newAmount?: string | undefined; }, { success: boolean; campaignUrn: string; error?: string | undefined; currencyCode?: string | undefined; newAmount?: string | undefined; }>, "many">; timestamp: z.ZodString; dryRun: z.ZodOptional>; effect: z.ZodOptional>; dispatchedCapability: z.ZodType; }, "strip", z.ZodTypeAny, { results: { success: boolean; campaignUrn: string; error?: string | undefined; currencyCode?: string | undefined; newAmount?: string | undefined; }[]; timestamp: string; dispatchedCapability: DispatchedCapability; confirmed: boolean; totalRequested: number; totalSucceeded: number; totalFailed: number; dryRun?: EffectDryRunResult | undefined; effect?: EffectResult | undefined; declineReason?: string | undefined; }, { results: { success: boolean; campaignUrn: string; error?: string | undefined; currencyCode?: string | undefined; newAmount?: string | undefined; }[]; timestamp: string; dispatchedCapability: DispatchedCapability; confirmed: boolean; totalRequested: number; totalSucceeded: number; totalFailed: 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: "adjust_bids"[]; entityKinds: never[]; entityIdArgs: never[]; schemaVersion: number; contractId: string; supportsDryRun: true; supportsBeforeAfterSnapshot: false; requiresValidation: true; requiresSimulation: true; }; }; inputExamples: ({ label: string; input: { adjustments: { campaignUrn: string; amount: string; currencyCode: string; }[]; reason?: undefined; }; } | { label: string; input: { adjustments: { campaignUrn: string; amount: string; currencyCode: string; }[]; reason: string; }; })[]; logic: typeof adjustBidsLogic; responseFormatter: typeof adjustBidsResponseFormatter; }; export {}; //# sourceMappingURL=adjust-bids.tool.d.ts.map