import { z } from 'zod'; import type { ServicialoAdapter } from '../../adapter.js'; export declare const resolveAuthTools: { 'resolve.register': { description: string; schema: z.ZodObject<{ slug: z.ZodString; country: z.ZodString; name: z.ZodString; mcp_url: z.ZodOptional; rest_url: z.ZodOptional; health_url: z.ZodOptional; legal_name: z.ZodOptional; verticals: z.ZodOptional>; contact_email: z.ZodOptional; }, "strip", z.ZodTypeAny, { country: string; name: string; slug: string; mcp_url?: string | undefined; rest_url?: string | undefined; health_url?: string | undefined; legal_name?: string | undefined; verticals?: string[] | undefined; contact_email?: string | undefined; }, { country: string; name: string; slug: string; mcp_url?: string | undefined; rest_url?: string | undefined; health_url?: string | undefined; legal_name?: string | undefined; verticals?: string[] | undefined; contact_email?: string | undefined; }>; handler: (client: ServicialoAdapter, args: { slug: string; country: string; name: string; mcp_url?: string; rest_url?: string; health_url?: string; legal_name?: string; verticals?: string[]; contact_email?: string; }) => Promise; }; 'resolve.update_endpoint': { description: string; schema: z.ZodObject<{ org_slug: z.ZodString; country: z.ZodDefault; mcp_url: z.ZodOptional; rest_url: z.ZodOptional; health_url: z.ZodOptional; }, "strip", z.ZodTypeAny, { country: string; org_slug: string; mcp_url?: string | undefined; rest_url?: string | undefined; health_url?: string | undefined; }, { org_slug: string; country?: string | undefined; mcp_url?: string | undefined; rest_url?: string | undefined; health_url?: string | undefined; }>; handler: (client: ServicialoAdapter, args: { org_slug: string; country?: string; mcp_url?: string; rest_url?: string; health_url?: string; }) => Promise; }; 'telemetry.heartbeat': { description: string; schema: z.ZodObject<{ org_slug: z.ZodString; country: z.ZodDefault; metrics: z.ZodOptional; appointments_30d: z.ZodOptional; }, "strip", z.ZodTypeAny, { services_active?: number | undefined; appointments_30d?: number | undefined; }, { services_active?: number | undefined; appointments_30d?: number | undefined; }>>; }, "strip", z.ZodTypeAny, { country: string; org_slug: string; metrics?: { services_active?: number | undefined; appointments_30d?: number | undefined; } | undefined; }, { org_slug: string; country?: string | undefined; metrics?: { services_active?: number | undefined; appointments_30d?: number | undefined; } | undefined; }>; handler: (client: ServicialoAdapter, args: { org_slug: string; country?: string; metrics?: { services_active?: number; appointments_30d?: number; }; }) => Promise; }; }; //# sourceMappingURL=resolve-auth.d.ts.map