import { TextContentResponse } from '../../types.js'; import { Tool } from '../../Tool.js'; import { McpServer, RegisteredTool } from '@modelcontextprotocol/sdk/server/mcp.js'; import { McpLogger } from '../../utils/logger.js'; import { z } from 'zod'; declare const inputSchemaZodObject: z.ZodObject<{ absoluteCurrentWorkingDirectory: z.ZodString; appId: z.ZodString; startDate: z.ZodOptional; endDate: z.ZodOptional; }, z.core.$strip>; export type GetApiUsagePatternsByAppIdInputSchema = z.infer; export declare class GetApiUsagePatternsByAppIdTool extends Tool { constructor(mcpServer: McpServer, logger: McpLogger); handler({ appId, startDate, endDate, absoluteCurrentWorkingDirectory, }: GetApiUsagePatternsByAppIdInputSchema): Promise; register(): RegisteredTool; } export {};