export type ScanDepsResult = { prebundleDeps: string[]; hasReanimated: boolean; hasNativewind: boolean; }; /** Known packages that will fail to pre-bundle, or no need to pre-bundle. */ export declare const EXCLUDE_LIST: string[]; export declare const EXCLUDE_LIST_SET: Set; export declare const INCLUDE_LIST: string[]; export declare const INCLUDE_LIST_SET: Set; export declare function scanDepsToOptimize(packageJsonPath: string, options?: { filter?: (id: string | unknown) => boolean; parentDepNames?: string[]; proceededDeps?: Map; /** If the content of the package.json is already read before calling this function, pass it here to avoid reading it again */ pkgJsonContent?: any; }): Promise; export declare function findDepPkgJsonPath(dep: any, dependent: any): Promise; //# sourceMappingURL=scanDepsToOptimize.d.ts.map