/**
 * List Bundles Tool
 * Search and paginate through bundles with unified scope model
 */
import { MCPTool, ToolResult } from '../types.js';
/**
 * List bundles arguments
 */
export interface ListBundlesArgs {
    query?: string;
    limit?: number;
    offset?: number;
}
export declare const listBundlesTool: MCPTool<ListBundlesArgs, ToolResult>;
//# sourceMappingURL=list-bundles.d.ts.map