import { _ as NativeAnonymizeBinding } from "./native.mjs"; import { o as LoadNativeBindingOptions } from "./native-node.mjs"; //#region src/native-runtime.d.ts /** * Report whether the current JavaScript runtime is Bun. */ export declare const isBunRuntime: () => boolean; /** * Resolve the N-API binding used by both Node.js and Bun. */ export declare const loadDefaultNativeBinding: (options?: LoadNativeBindingOptions) => Promise; /** * Eagerly validate the native binding. Retained for compatibility with callers * that preloaded the former Bun-specific runtime fallback. */ export declare const preloadNativeBinding: () => Promise; //#endregion //# sourceMappingURL=native-runtime.d.mts.map