import { z } from 'zod'; import type { ToastAPIClient } from '../api-client.js'; export declare function registerRestaurantTools(client: ToastAPIClient): { name: string; description: string; inputSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>; execute: (args: any) => Promise<{ content: { type: string; text: string; }[]; }>; }[]; //# sourceMappingURL=restaurant-tools.d.ts.map