/** * Builds the theming tool response from guidance and conversation context. * * @module tools/storefrontnext/site-theming/response-builder */ import type { ThemingGuidance } from './theming-store.js'; import type { ConversationContext } from './types.js'; /** * Returns questions relevant to the current conversation state, filtered and sorted. */ export declare function getRelevantQuestions(guidance: ThemingGuidance, context?: ConversationContext): ThemingGuidance['questions']; export declare function hasProvidedThemingInfo(context?: ConversationContext): boolean; /** * Generates the full theming tool response from guidance and conversation context. */ export declare function generateResponse(guidance: ThemingGuidance, context?: ConversationContext): string;