import type { AuthenticateConfig, AuthenticateResponse, Balance, EndRoundResponse, EventResponse, JurisdictionFlags, Language, PlayParameters, PlayResponse } from './types.js'; type Client = { sessionID: string; lang: Language; device: string; balance: Balance; authenticateConfig: AuthenticateConfig; jurisdictionFlags: JurisdictionFlags; Authenticate: () => Promise; Play: (params: PlayParameters) => Promise; EndRound: () => Promise; Event: (eventValue: string) => Promise; }; declare const RGSClient: (options: { url: string; enforceBetLevels?: boolean; protocol?: "http" | "https"; }) => Client; export { RGSClient }; //# sourceMappingURL=client.d.ts.map