import type { Suggestion } from '../../../components/assistant/xertica-assistant/types'; export interface AssistantConfig { /** Quick-reply suggestions shown on the welcome screen */ suggestions: Suggestion[]; /** Extended rich suggestions shown after "More suggestions" */ richSuggestions: Suggestion[]; /** Negative feedback category labels */ feedbackOptions: string[]; } export declare function fetchAssistantConfig(): Promise; export declare function getMockRichSuggestions(): Suggestion[]; export declare function getMockFeedbackOptions(): string[];