import type { ConfigT, InputConfigT } from 'metro-config'; export type InputConfig = InputConfigT; export declare const withRNVRNConfig: (config: any) => { root: string; reactNativePath: string; dependencies: { expo: { platforms: { android: null; ios: null; macos: null; }; }; }; project: { ios: { sourceDir: string | undefined; }; android: { appName: string; sourceDir: string | undefined; packageName: string | undefined; }; }; }; export declare const withMetroConfig: (projectRoot: string) => ConfigT; export declare const mergeConfig: (defaultConfig: ConfigT, ...configs: InputConfig[]) => ConfigT; //# sourceMappingURL=adapters.d.ts.map