export declare const reportToolDefinitions: { name: string; description: string; inputSchema: { type: "object"; properties: { client: { type: string; description: string; }; week: { type: string; description: string; }; }; required: string[]; }; }[]; export declare function adminWeeklyReport(client: string, week?: string): Promise;