/**
 * Export Tools Module
 *
 * Provides tool equivalents for export resources to ensure compatibility with AI assistants
 * that can only access tools, not resources.
 *
 * @module tools/export-tools
 */
import { Tool } from "@modelcontextprotocol/sdk/types.js";
/**
 * Execute export tool function
 */
export declare function executeExportTool(toolName: string, params: any, request: any, options: {
    apiUrl?: string;
}): Promise<{
    content: Array<{
        type: string;
        text: string;
    }>;
    isError?: boolean;
}>;
/**
 * Register export tools with the MCP server
 */
export declare function registerExportTools(): Tool[];
//# sourceMappingURL=index.d.ts.map