import type { Bundle, FileInfo, Resolver } from '../resolver'; import type { ParsedPathPlus } from '../utils'; export declare class NodeResolver implements Resolver { priority: number; name: string; dockerfileContents: string; private packageJsonContent?; private hasScripts; entry(file: FileInfo): void; needsEntry(entryPath: ParsedPathPlus, specifiedDockerfilePath?: string): boolean; isSatisfied(): boolean; resolve(bundle: Bundle): Promise; getCanonicalName(): string; } export default NodeResolver;