export interface NativeModuleResponseInternal { requestId: string; result?: any; error?: any; details?: any; } export interface NativeModuleResponse { result: T; }