import { z } from 'zod'; export declare const searchEmailCampaignsTool: { name: string; description: string; parameters: { name: z.ZodOptional; state: z.ZodOptional>; type: z.ZodOptional; properties: z.ZodOptional>; limit: z.ZodOptional; after: z.ZodOptional; }; handler: ({ name, state, type, properties, limit, after }: any) => Promise<{ content: { type: "text"; text: string; }[]; }>; }; export declare const getEmailCampaignTool: { name: string; description: string; parameters: { campaignId: z.ZodString; }; handler: ({ campaignId }: { campaignId: string; }) => Promise<{ content: { type: "text"; text: string; }[]; }>; }; export declare const getCampaignMetricsTool: { name: string; description: string; parameters: { year: z.ZodNumber; }; handler: ({ year }: { year: number; }) => Promise<{ content: { type: "text"; text: string; }[]; }>; }; export declare const getCampaignPerformanceTool: { name: string; description: string; parameters: { campaignId: z.ZodString; startDate: z.ZodString; endDate: z.ZodString; }; handler: ({ campaignId, startDate, endDate }: { campaignId: string; startDate: string; endDate: string; }) => Promise<{ content: { type: "text"; text: string; }[]; }>; }; export declare const getEmailStatisticsHistogramTool: { name: string; description: string; parameters: { dateStr: z.ZodString; interval: z.ZodOptional; }; handler: ({ dateStr, interval }: { dateStr: string; interval?: string; }) => Promise<{ content: { type: "text"; text: string; }[]; }>; }; //# sourceMappingURL=email-campaigns.d.ts.map