/**
 * Helper function to resolve the path of a module. Using node's
 * module lookup mechanism allows to safely require modules in respect to more
 * complex project structures (e.g. monorepos) that might have split up module
 * folders.
 */
export declare function nodeResolvePackage(pck: string, cwd: string): string;
