export type CredentialsProvider = () => Promise<{ /** * HYTOPIA API key */ readonly apiKey: string; /** * Game associated with this instance */ readonly gameId: string; /** * Lobby associated with this instance */ readonly lobbyId: string; }>;