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