import { z } from 'zod'; import type { ServicialoAdapter } from '../../adapter.js'; export declare const resolveTools: { 'resolve.lookup': { description: string; schema: z.ZodObject<{ org_slug: z.ZodString; country: z.ZodDefault; }, "strip", z.ZodTypeAny, { country: string; org_slug: string; }, { org_slug: string; country?: string | undefined; }>; handler: (client: ServicialoAdapter, args: { org_slug: string; country?: string; }) => Promise; }; 'resolve.search': { description: string; schema: z.ZodObject<{ country: z.ZodDefault; vertical: z.ZodOptional; limit: z.ZodDefault; }, "strip", z.ZodTypeAny, { country: string; limit: number; vertical?: string | undefined; }, { vertical?: string | undefined; country?: string | undefined; limit?: number | undefined; }>; handler: (client: ServicialoAdapter, args: { country?: string; vertical?: string; limit?: number; }) => Promise; }; 'trust.get_score': { description: string; schema: z.ZodObject<{ org_slug: z.ZodString; country: z.ZodDefault; }, "strip", z.ZodTypeAny, { country: string; org_slug: string; }, { org_slug: string; country?: string | undefined; }>; handler: (client: ServicialoAdapter, args: { org_slug: string; country?: string; }) => Promise; }; }; //# sourceMappingURL=resolve.d.ts.map