/**
 * Reports tools for Amazon Selling Partner API
 */
import { ToolRegistrationManager } from '../server/tools.js';
import { ReportsClient } from '../api/reports-client.js';
import { AuthConfig } from '../types/auth.js';
/**
 * Register reports tools with the tool manager
 *
 * @param toolManager Tool registration manager
 * @param authConfig Authentication configuration
 * @param providedReportsClient Optional reports client to use
 */
export declare function registerReportsTools(toolManager: ToolRegistrationManager, authConfig: AuthConfig, providedReportsClient?: ReportsClient): void;
