import { Tool } from '@modelcontextprotocol/sdk/types.js'; export declare const listProjectsTool: Tool; export declare function listProjects(input: unknown): Promise<{ content: { type: string; text: string; }[]; isError?: undefined; } | { content: { type: string; text: string; }[]; isError: boolean; }>; export declare const getProjectTool: Tool; export declare function getProject(input: unknown): Promise<{ content: { type: string; text: string; }[]; isError?: undefined; } | { content: { type: string; text: string; }[]; isError: boolean; }>; export declare const getProjectVersionsTool: Tool; export declare function getProjectVersions(input: unknown): Promise<{ content: { type: string; text: string; }[]; isError?: undefined; } | { content: { type: string; text: string; }[]; isError: boolean; }>; //# sourceMappingURL=projects.d.ts.map