type AiResponseLanguageOption = { label: string; value: string; promptName: string; }; declare const AI_RESPONSE_LANGUAGE_OPTIONS: AiResponseLanguageOption[]; declare const DEFAULT_AI_RESPONSE_LANGUAGE: string; declare const normalizeAiResponseLanguage: (value: unknown) => string; declare const getAiResponseLanguagePromptName: (value: unknown) => string; export { AI_RESPONSE_LANGUAGE_OPTIONS, type AiResponseLanguageOption, DEFAULT_AI_RESPONSE_LANGUAGE, getAiResponseLanguagePromptName, normalizeAiResponseLanguage };