import type { ModuleGraph } from '../types/module-graph.js'; import type { File } from './types.js'; export interface FileDescriptorOptions { isShowContention?: boolean; } export declare const buildFileDescriptor: (filePath: string, cwd: string, graph: ModuleGraph, entryPaths: Set, options?: FileDescriptorOptions) => File | undefined;