import { Tool } from '../types/tool';
export declare function loadTools(filePath: string): Promise<Tool[]>;
export declare function initializeTools(filePath: string): Promise<Record<string, Tool>>;
export interface StaticAnalysisResult {
    filename: string;
    issues: Array<{
        line: number;
        character: number;
        message: string;
        severity: 'error' | 'warning' | 'info';
    }>;
}
