import { z } from "zod"; import type { RequestContext, McpTextContent } from "@cesteral/shared"; import type { SdkContext } from "@cesteral/shared"; export declare const ListEntitiesInputSchema: z.ZodObject<{ entityType: z.ZodEnum<[string, ...string[]]>; adAccountUrn: z.ZodOptional; start: z.ZodOptional; count: z.ZodOptional; }, "strip", z.ZodTypeAny, { entityType: string; start?: number | undefined; count?: number | undefined; adAccountUrn?: string | undefined; }, { entityType: string; start?: number | undefined; count?: number | undefined; adAccountUrn?: string | undefined; }>; export declare const ListEntitiesOutputSchema: z.ZodObject<{ entities: z.ZodArray, "many">; pagination: z.ZodObject<{ nextCursor: z.ZodNullable; hasMore: z.ZodBoolean; pageSize: z.ZodNumber; totalCount: z.ZodOptional; nextPageInputKey: z.ZodString; }, "strip", z.ZodTypeAny, { nextCursor: string | null; hasMore: boolean; pageSize: number; nextPageInputKey: string; totalCount?: number | undefined; }, { nextCursor: string | null; hasMore: boolean; pageSize: number; nextPageInputKey: string; totalCount?: number | undefined; }>; timestamp: z.ZodString; }, "strip", z.ZodTypeAny, { entities: Record[]; pagination: { nextCursor: string | null; hasMore: boolean; pageSize: number; nextPageInputKey: string; totalCount?: number | undefined; }; timestamp: string; }, { entities: Record[]; pagination: { nextCursor: string | null; hasMore: boolean; pageSize: number; nextPageInputKey: string; totalCount?: number | undefined; }; timestamp: string; }>; type ListEntitiesInput = z.infer; type ListEntitiesOutput = z.infer; export declare function listEntitiesLogic(input: ListEntitiesInput, context: RequestContext, sdkContext?: SdkContext): Promise; export declare function listEntitiesResponseFormatter(result: ListEntitiesOutput): McpTextContent[]; export declare const listEntitiesTool: { name: string; title: string; description: string; inputSchema: z.ZodObject<{ entityType: z.ZodEnum<[string, ...string[]]>; adAccountUrn: z.ZodOptional; start: z.ZodOptional; count: z.ZodOptional; }, "strip", z.ZodTypeAny, { entityType: string; start?: number | undefined; count?: number | undefined; adAccountUrn?: string | undefined; }, { entityType: string; start?: number | undefined; count?: number | undefined; adAccountUrn?: string | undefined; }>; outputSchema: z.ZodObject<{ entities: z.ZodArray, "many">; pagination: z.ZodObject<{ nextCursor: z.ZodNullable; hasMore: z.ZodBoolean; pageSize: z.ZodNumber; totalCount: z.ZodOptional; nextPageInputKey: z.ZodString; }, "strip", z.ZodTypeAny, { nextCursor: string | null; hasMore: boolean; pageSize: number; nextPageInputKey: string; totalCount?: number | undefined; }, { nextCursor: string | null; hasMore: boolean; pageSize: number; nextPageInputKey: string; totalCount?: number | undefined; }>; timestamp: z.ZodString; }, "strip", z.ZodTypeAny, { entities: Record[]; pagination: { nextCursor: string | null; hasMore: boolean; pageSize: number; nextPageInputKey: string; totalCount?: number | undefined; }; timestamp: string; }, { entities: Record[]; pagination: { nextCursor: string | null; hasMore: boolean; pageSize: number; nextPageInputKey: string; totalCount?: number | undefined; }; timestamp: string; }>; annotations: { readOnlyHint: boolean; openWorldHint: boolean; idempotentHint: boolean; destructiveHint: boolean; }; inputExamples: ({ label: string; input: { entityType: string; adAccountUrn: string; count: number; start?: undefined; }; } | { label: string; input: { entityType: string; adAccountUrn: string; count?: undefined; start?: undefined; }; } | { label: string; input: { entityType: string; adAccountUrn: string; start: number; count: number; }; })[]; logic: typeof listEntitiesLogic; responseFormatter: typeof listEntitiesResponseFormatter; }; export {}; //# sourceMappingURL=list-entities.tool.d.ts.map