import { NativeModule, requireNativeModule } from 'expo'; import { CoolPdfModuleEvents } from './CoolPdf.types'; declare class CoolPdfModule extends NativeModule { PI: number; hello(): string; setValueAsync(value: string): Promise; } // This call loads the native module object from the JSI. export default requireNativeModule('CoolPdf');