1/**
2 * Copyright © 2022 650 Industries.
3 *
4 * This source code is licensed under the MIT license found in the
5 * LICENSE file in the root directory of this source tree.
6 */
7/**
8 * Must satisfy the requirements of the Metro bundler.
9 * https://github.com/react-native-community/discussions-and-proposals/blob/main/proposals/0605-lazy-bundling.md#__loadbundleasync-in-metro
10 */
11type AsyncRequire = (path: string) => Promise<void>;
12/** Create an `loadBundleAsync` function in the expected shape for Metro bundler. */
13export declare function buildAsyncRequire(): AsyncRequire;
14export {};
15//# sourceMappingURL=buildAsyncRequire.d.ts.map