import { z } from 'zod'; import type { ServicialoAdapter } from '../../adapter.js'; export declare const publicAvailabilityTools: { 'scheduling.check_availability': { description: string; schema: z.ZodObject<{ org_slug: z.ZodString; service_id: z.ZodOptional; provider_id: z.ZodOptional; resource_id: z.ZodOptional; date_from: z.ZodString; date_to: z.ZodString; }, "strip", z.ZodTypeAny, { org_slug: string; date_from: string; date_to: string; service_id?: string | undefined; provider_id?: string | undefined; resource_id?: string | undefined; }, { org_slug: string; date_from: string; date_to: string; service_id?: string | undefined; provider_id?: string | undefined; resource_id?: string | undefined; }>; handler: (client: ServicialoAdapter, args: { org_slug: string; service_id?: string; provider_id?: string; resource_id?: string; date_from: string; date_to: string; }) => Promise; }; }; //# sourceMappingURL=availability.d.ts.map