import type { MetroConfig } from 'expo/metro-config'; import type { Options } from './types.ts'; /** * Patches the Metro config to add a middleware via `config.server.enhanceMiddleware`. */ declare const addLiveStoreDevtoolsMiddleware: (config: MutableDeep, options: Options) => void; /** Remove readonly from all properties */ type MutableDeep = { -readonly [P in keyof T]: MutableDeep; }; export type { addLiveStoreDevtoolsMiddleware }; export type { Options } from './types.ts'; //# sourceMappingURL=metro-config.d.cts.map