/** @module QuickConnect */ import PlayerIOClient from "./client"; import { KeyValue } from "./utilities/util"; declare const QuickConnect: { /** * @param gameId The game id of the game you wish to connect to. This value can be found in the admin panel. * @param usernameOrEmail The username, or email of the account to login via. * @param password The password of the account to use to login with. * @param playerInsightSegments Custom segments for the user in PlayerInsight. */ simpleConnect: (gameId: string, usernameOrEmail: string, password: string, playerInsightSegments?: KeyValue) => Promise; }; export default QuickConnect;