import { GroupType } from '../enums/group-type.enum'; import { LeaderboardType } from '../enums/leaderboard-type.enum'; import { Platform } from '../enums/platform.enum'; import { TimeWindow } from '../enums/time-window.enum'; export declare class FortniteURLHelper { static readonly lightSwitchUrl: string; static readonly accountPublicUrl: string; static readonly leaderboardsPublicUrl: string; static readonly launcherPublicUrl: string; static readonly contentPublicUrl: string; static readonly gameApiV2: string; static readonly personaApi: string; static readonly storeFrontV2: string; static readonly stats: string; static readonly friendsPublicUrl: string; static gameNews: string; static oAuthToken: string; static oAuthExchange: string; static serviceStatus: string; static lookup: string; static lookupById: string; static store: string; static killOtherSessions: string; static sendFriendRequest: string; static buildVersion: string; static GET_PLAYER_PROFILE_REQUEST_URL(userId: string, timeWindow: TimeWindow): string; static GET_LIST_FRIENDS_URL(userId: string): string; static GET_LEADERBOARDS_URL(leaderboardType: LeaderboardType, platform: Platform, groupType: GroupType, timeWindow: TimeWindow): string; }