/**
 * Tools index file
 *
 * This file exports all the tools available in the hive-tools platform.
 * It serves as the central registry for tools that can be used via the CLI.
 */
interface ToolsMap {
    [key: string]: (...args: any[]) => Promise<any>;
}
export declare const tools: ToolsMap;
/**
 * Execute a tool by name with the given arguments
 * @param toolName The name of the tool to execute
 * @param args The arguments to pass to the tool
 * @returns The result of the tool execution
 */
export declare function executeTool(toolName: string, args: any): Promise<any>;
declare const _default: {
    tools: ToolsMap;
    executeTool: typeof executeTool;
};
export default _default;
//# sourceMappingURL=index.d.ts.map