import { z } from "zod"; import type { McpTextContent, RequestContext, SdkContext, EffectResult, EffectDryRunResult, DispatchedCapability } from "@cesteral/shared"; export declare const ArchiveEntitiesInputSchema: z.ZodObject<{ entityType: z.ZodEnum<[string, ...string[]]>; entityIds: z.ZodArray; dry_run: z.ZodDefault>; }, "strip", z.ZodTypeAny, { entityType: string; dry_run: boolean; entityIds: string[]; }, { entityType: string; entityIds: string[]; dry_run?: boolean | undefined; }>; export declare const ArchiveEntitiesOutputSchema: z.ZodObject<{ confirmed: z.ZodBoolean; declineReason: z.ZodOptional; entityType: z.ZodString; totalRequested: z.ZodNumber; successCount: z.ZodNumber; failureCount: z.ZodNumber; results: z.ZodArray; }, "strip", z.ZodTypeAny, { entityId: string; success: boolean; error?: string | undefined; }, { entityId: string; success: boolean; error?: string | undefined; }>, "many">; timestamp: z.ZodString; dryRun: z.ZodOptional>; effect: z.ZodOptional>; dispatchedCapability: z.ZodType; }, "strip", z.ZodTypeAny, { entityType: string; results: { entityId: string; success: boolean; error?: string | undefined; }[]; timestamp: string; dispatchedCapability: DispatchedCapability; confirmed: boolean; totalRequested: number; successCount: number; failureCount: number; dryRun?: EffectDryRunResult | undefined; effect?: EffectResult | undefined; declineReason?: string | undefined; }, { entityType: string; results: { entityId: string; success: boolean; error?: string | undefined; }[]; timestamp: string; dispatchedCapability: DispatchedCapability; confirmed: boolean; totalRequested: number; successCount: number; failureCount: number; dryRun?: EffectDryRunResult | undefined; effect?: EffectResult | undefined; declineReason?: string | undefined; }>; type ArchiveInput = z.infer; type ArchiveOutput = z.infer; export declare function archiveEntitiesLogic(input: ArchiveInput, context: RequestContext, sdkContext?: SdkContext): Promise; export declare function archiveEntitiesResponseFormatter(result: ArchiveOutput): McpTextContent[]; export declare const archiveEntitiesTool: { name: string; title: string; description: string; inputSchema: z.ZodObject<{ entityType: z.ZodEnum<[string, ...string[]]>; entityIds: z.ZodArray; dry_run: z.ZodDefault>; }, "strip", z.ZodTypeAny, { entityType: string; dry_run: boolean; entityIds: string[]; }, { entityType: string; entityIds: string[]; dry_run?: boolean | undefined; }>; outputSchema: z.ZodObject<{ confirmed: z.ZodBoolean; declineReason: z.ZodOptional; entityType: z.ZodString; totalRequested: z.ZodNumber; successCount: z.ZodNumber; failureCount: z.ZodNumber; results: z.ZodArray; }, "strip", z.ZodTypeAny, { entityId: string; success: boolean; error?: string | undefined; }, { entityId: string; success: boolean; error?: string | undefined; }>, "many">; timestamp: z.ZodString; dryRun: z.ZodOptional>; effect: z.ZodOptional>; dispatchedCapability: z.ZodType; }, "strip", z.ZodTypeAny, { entityType: string; results: { entityId: string; success: boolean; error?: string | undefined; }[]; timestamp: string; dispatchedCapability: DispatchedCapability; confirmed: boolean; totalRequested: number; successCount: number; failureCount: number; dryRun?: EffectDryRunResult | undefined; effect?: EffectResult | undefined; declineReason?: string | undefined; }, { entityType: string; results: { entityId: string; success: boolean; error?: string | undefined; }[]; timestamp: string; dispatchedCapability: DispatchedCapability; confirmed: boolean; totalRequested: number; successCount: number; failureCount: number; dryRun?: EffectDryRunResult | undefined; effect?: EffectResult | undefined; declineReason?: string | undefined; }>; annotations: { readOnlyHint: boolean; openWorldHint: boolean; destructiveHint: boolean; idempotentHint: boolean; cesteral: { kind: "write"; writeClass: "effect"; executableArgsExclude: string[]; platform: string; contractPlatformSlug: string; contractToolSlug: string; operation: "archive"[]; entityKinds: never[]; entityIdArgs: string[]; schemaVersion: number; contractId: string; supportsDryRun: true; supportsBeforeAfterSnapshot: false; requiresValidation: true; requiresSimulation: true; }; }; inputExamples: { label: string; input: { entityType: string; entityIds: string[]; }; }[]; logic: typeof archiveEntitiesLogic; responseFormatter: typeof archiveEntitiesResponseFormatter; }; export {}; //# sourceMappingURL=archive-entities.tool.d.ts.map