import { KnipMcpServerConfig } from '../types/index.js';
export interface McpTool {
    name: string;
    description: string;
    inputSchema: any;
    execute: (args: any) => Promise<any>;
}
export declare function createKnipTools(config: KnipMcpServerConfig): Record<string, McpTool>;
//# sourceMappingURL=index.d.ts.map