export declare const toolDefinitions: {
    name: string;
    description: string;
    inputSchema: {
        type: string;
        properties: {
            path: {
                type: string;
                description: string;
            };
        };
        required: string[];
    };
}[];
export declare function handleToolCall(name: string, args: any): Promise<{
    content: {
        type: string;
        text: string;
    }[];
}>;
