import { z } from "zod"; import type { RequestContext, McpTextContent } from "@cesteral/shared"; import type { SdkContext } from "@cesteral/shared"; export declare const GetEntityInputSchema: z.ZodObject<{ entityType: z.ZodEnum<[string, ...string[]]>; entityUrn: z.ZodString; }, "strip", z.ZodTypeAny, { entityType: string; entityUrn: string; }, { entityType: string; entityUrn: string; }>; export declare const GetEntityOutputSchema: z.ZodObject<{ entity: z.ZodRecord; entityType: z.ZodString; timestamp: z.ZodString; }, "strip", z.ZodTypeAny, { entityType: string; timestamp: string; entity: Record; }, { entityType: string; timestamp: string; entity: Record; }>; type GetEntityInput = z.infer; type GetEntityOutput = z.infer; export declare function getEntityLogic(input: GetEntityInput, context: RequestContext, sdkContext?: SdkContext): Promise; export declare function getEntityResponseFormatter(result: GetEntityOutput): McpTextContent[]; export declare const getEntityTool: { name: string; title: string; description: string; inputSchema: z.ZodObject<{ entityType: z.ZodEnum<[string, ...string[]]>; entityUrn: z.ZodString; }, "strip", z.ZodTypeAny, { entityType: string; entityUrn: string; }, { entityType: string; entityUrn: string; }>; outputSchema: z.ZodObject<{ entity: z.ZodRecord; entityType: z.ZodString; timestamp: z.ZodString; }, "strip", z.ZodTypeAny, { entityType: string; timestamp: string; entity: Record; }, { entityType: string; timestamp: string; entity: Record; }>; annotations: { readOnlyHint: boolean; openWorldHint: boolean; idempotentHint: boolean; destructiveHint: boolean; cesteral: { kind: "read"; platform: string; contractPlatformSlug: string; contractToolSlug: string; entityKinds: "campaign"[]; entityIdArgs: string[]; schemaVersion: number; contractId: string; }; }; inputExamples: { label: string; input: { entityType: string; entityUrn: string; }; }[]; logic: typeof getEntityLogic; responseFormatter: typeof getEntityResponseFormatter; }; export {}; //# sourceMappingURL=get-entity.tool.d.ts.map