import type { CompilerOptions } from 'typescript'; import type { ConfigurationChief, Workspace } from '../ConfigurationChief.js'; export declare const augmentWorkspace: (workspace: Workspace, dir: string, compilerOptions: CompilerOptions) => void; export declare const getModuleSourcePathHandler: (chief: ConfigurationChief) => (filePath: string) => string | undefined; export declare const getToSourcePathsHandler: (chief: ConfigurationChief) => (specifiers: Set, dir: string, extensions: string | undefined, label: string) => Promise; export type ToSourceFilePath = ReturnType;