export type IFindNodeModuleFile = { name: string; target: string; filePath: string; root?: string; }; export declare function findNodeModuleFile({ name, target, filePath, root, }: IFindNodeModuleFile): string[];