import { z } from "zod"; import type { RequestContext, McpTextContent } from "@cesteral/shared"; import type { SdkContext } from "@cesteral/shared"; export declare const GetAdPreviewInputSchema: z.ZodObject<{ creativeUrn: z.ZodString; adFormat: z.ZodOptional; }, "strip", z.ZodTypeAny, { creativeUrn: string; adFormat?: string | undefined; }, { creativeUrn: string; adFormat?: string | undefined; }>; export declare const GetAdPreviewOutputSchema: z.ZodObject<{ preview: z.ZodRecord; creativeUrn: z.ZodString; timestamp: z.ZodString; }, "strip", z.ZodTypeAny, { timestamp: string; creativeUrn: string; preview: Record; }, { timestamp: string; creativeUrn: string; preview: Record; }>; type GetAdPreviewInput = z.infer; type GetAdPreviewOutput = z.infer; export declare function getAdPreviewLogic(input: GetAdPreviewInput, context: RequestContext, sdkContext?: SdkContext): Promise; export declare function getAdPreviewResponseFormatter(result: GetAdPreviewOutput): McpTextContent[]; export declare const getAdPreviewTool: { name: string; title: string; description: string; inputSchema: z.ZodObject<{ creativeUrn: z.ZodString; adFormat: z.ZodOptional; }, "strip", z.ZodTypeAny, { creativeUrn: string; adFormat?: string | undefined; }, { creativeUrn: string; adFormat?: string | undefined; }>; outputSchema: z.ZodObject<{ preview: z.ZodRecord; creativeUrn: z.ZodString; timestamp: z.ZodString; }, "strip", z.ZodTypeAny, { timestamp: string; creativeUrn: string; preview: Record; }, { timestamp: string; creativeUrn: string; preview: Record; }>; annotations: { readOnlyHint: boolean; openWorldHint: boolean; idempotentHint: boolean; destructiveHint: boolean; }; inputExamples: { label: string; input: { creativeUrn: string; adFormat: string; }; }[]; logic: typeof getAdPreviewLogic; responseFormatter: typeof getAdPreviewResponseFormatter; }; export {}; //# sourceMappingURL=get-ad-preview.tool.d.ts.map