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