/** * Ensures the native module is available, otherwise throws a helpful linking error. */ export declare function ensureNativeModule(nativeModule: NativeModule | null): NativeModule; /** * Calls a method on a native module with type-safe access. */ export declare const callNativeModule: (nativeModule: Spec, fn: (native: Spec) => Result) => Result; //# sourceMappingURL=native-bridge.d.ts.map