import React from 'react'; import { AvatarConfig } from '../../types/avatars'; import { SurveyCardDetails } from '../cards/SurveyCard'; interface SurveyListProps { className?: string; texts: { requiredSurveys: { title: string; info: string; successMsg: string; }; optionalSurveys: { title: string; info: string; hideBtn: string; showBtn: string; }; }; requiredSurveys: Array; optionalSurveys: Array; selectedLanguage: string; avatars: Array; openSurvey: (studyKey: string, surveyKey: string, profileId: string) => void; } declare const SurveyList: React.FC; export default SurveyList;