import { ProxyNativeModule } from '@unimodules/core'; export interface ServerRegistrationModule extends ProxyNativeModule { getInstallationIdAsync?: () => Promise; getRegistrationInfoAsync?: () => Promise; setRegistrationInfoAsync?: (registrationInfo: string | null) => Promise; }