import { z } from 'zod'; export declare const searchContactsTool: { name: string; description: string; parameters: { filters: z.ZodOptional>; properties: z.ZodOptional>; limit: z.ZodOptional; after: z.ZodOptional; }; handler: ({ filters, properties, limit, after }: any) => Promise<{ content: { type: "text"; text: string; }[]; }>; }; export declare const getContactTool: { name: string; description: string; parameters: { contactId: z.ZodString; properties: z.ZodOptional>; }; handler: ({ contactId, properties }: { contactId: string; properties?: string[]; }) => Promise<{ content: { type: "text"; text: string; }[]; }>; }; export declare const getContactsByCompanyTool: { name: string; description: string; parameters: { companyId: z.ZodString; limit: z.ZodOptional; }; handler: ({ companyId, limit }: { companyId: string; limit?: number; }) => Promise<{ content: { type: "text"; text: string; }[]; }>; }; //# sourceMappingURL=contacts.d.ts.map