import { NativeModule } from 'expo-modules-core'; export type PlayerAnalyticsModuleEvents = Record; /** * Native PlayerAnalyticsModule using Expo modules API. * Provides modern async/await interface while maintaining backward compatibility. */ declare class PlayerAnalyticsModule extends NativeModule { sendCustomDataEvent(playerId: string, customData: Record): Promise; getUserId(playerId: string): Promise; } declare const _default: PlayerAnalyticsModule; export default _default; //# sourceMappingURL=playerAnalyticsModule.d.ts.map