import { Tool } from '@modelcontextprotocol/sdk/types.js'; export declare const customRequestTool: Tool; export declare function customRequest(input: unknown): Promise<{ content: { type: string; text: string; }[]; isError?: undefined; } | { content: { type: string; text: string; }[]; isError: boolean; }>; export declare const listStatusesTool: Tool; export declare function listStatuses(): Promise<{ content: { type: string; text: string; }[]; isError?: undefined; } | { content: { type: string; text: string; }[]; isError: boolean; }>; export declare const listPrioritiesTool: Tool; export declare function listPriorities(): Promise<{ content: { type: string; text: string; }[]; isError?: undefined; } | { content: { type: string; text: string; }[]; isError: boolean; }>; export declare const listTrackersTool: Tool; export declare function listTrackers(): Promise<{ content: { type: string; text: string; }[]; isError?: undefined; } | { content: { type: string; text: string; }[]; isError: boolean; }>; export declare const searchTool: Tool; export declare function searchRedmine(input: unknown): Promise<{ content: { type: string; text: string; }[]; isError?: undefined; } | { content: { type: string; text: string; }[]; isError: boolean; }>; export declare const tools: Tool[]; export declare const toolHandlers: Record Promise>; //# sourceMappingURL=index.d.ts.map