import React from 'react'; import { SurveyInfo } from '../../types/studyAPI'; import { Profile } from '../../types/profile'; import { AvatarConfig } from '../../types/avatars'; import { LocalizedString } from 'survey-engine/data_types'; export interface SurveyCardDetails { studyName?: LocalizedString[]; surveyKey: string; studyKey: string; category: string; validUntil?: number; profiles: Profile[]; surveyInfos?: SurveyInfo; } interface SurveyCardProps { details: SurveyCardDetails; selectedLanguage?: string; avatars: Array; onClick?: (studyKey: string, surveyKey: string, profileId: string) => void; } declare const SurveyCard: React.FC; export default SurveyCard;