import { z } from 'zod'; import type { ServicialoAdapter } from '../../adapter.js'; export declare const registryTools: { 'registry.search': { description: string; schema: z.ZodObject<{ vertical: z.ZodOptional; location: z.ZodOptional; country: z.ZodDefault; limit: z.ZodDefault; }, "strip", z.ZodTypeAny, { country: string; limit: number; vertical?: string | undefined; location?: string | undefined; }, { vertical?: string | undefined; location?: string | undefined; country?: string | undefined; limit?: number | undefined; }>; handler: (client: ServicialoAdapter, args: { vertical?: string; location?: string; country?: string; limit?: number; }) => Promise; }; 'registry.manifest': { description: string; schema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>; handler: (client: ServicialoAdapter) => Promise; }; 'registry.get_organization': { 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=registry.d.ts.map