import type { Services } from '../../services.js'; import type { McpTool } from '../../utils/index.js'; /** * Creates the scapi_schemas_list tool. * * Mirrors CLI: b2c scapi schemas list (discovery) and b2c scapi schemas get (fetch). * Lists or fetches SCAPI schema specifications; includes standard SCAPI and custom API as schema types. * * @param loadServices - Function that loads configuration and returns Services instance * @returns MCP tool for listing/fetching SCAPI schemas */ export declare function createScapiSchemasListTool(loadServices: () => Promise | Services): McpTool;