import type { McpTool } from '../../../utils/index.js'; import type { Services } from '../../../services.js'; export type { ColorEntry, ColorMapping, CollectedAnswers, ConversationContext, FontEntry, SiteThemingInput, } from './types.js'; /** * Creates the site theming MCP tool for Storefront Next. * * The tool guides theming changes (colors, fonts, visual styling) and validates color * combinations for WCAG accessibility. It must be called before implementing any * theming changes. * * @param loadServices - Function that loads configuration and returns Services instance * @returns The configured MCP tool */ export declare function createSiteThemingTool(loadServices: () => Promise | Services): McpTool;