export interface SuggestedQuestion {
    id: string;
    text: string;
    category: string;
    priority: number;
    context?: string[];
    analytics?: {
        clickCount: number;
        lastUsed: Date;
    };
}
export interface QuestionCategory {
    id: string;
    name: string;
    description: string;
    questions: SuggestedQuestion[];
}
export declare const DEFAULT_QUESTIONS: SuggestedQuestion[];
export declare const QUESTION_CATEGORIES: QuestionCategory[];
export declare const CONTEXTUAL_QUESTIONS: Record<string, SuggestedQuestion[]>;
export declare class QuestionAnalytics {
    private static readonly STORAGE_KEY;
    static trackQuestionClick(questionId: string): void;
    static getAnalytics(): Record<string, {
        clickCount: number;
        lastUsed: Date;
        questionId: string;
    }>;
    static getMostPopularQuestions(limit?: number): SuggestedQuestion[];
    static clearAnalytics(): void;
}
//# sourceMappingURL=suggested-questions-config.d.ts.map