import * as repograph_core from 'repograph-core';
import { FileContent, LanguageConfig } from 'repograph-core';

declare function processFileInWorker({ file, langConfig }: {
    file: FileContent;
    langConfig: LanguageConfig;
}): Promise<{
    nodes: repograph_core.CodeNode[];
    relations: repograph_core.UnresolvedRelation[];
}>;

export { processFileInWorker as default };
