import { DappPortalSDKConfig } from '../config/config'; import { EventDto } from '../dto/EventDto'; export declare class EventClient { private readonly baseUrl; private readonly clientId; constructor(config: DappPortalSDKConfig); getEvents: (bannerTiming: string) => Promise; setEventUserConnection: (eventId: string, connectionToken: string, walletAddress: string) => Promise; validateSubMissionCompletion: (eventId: string, subMissionIndex: string, walletAddress: string) => Promise; }