import { CacheOptions } from './options'; /** * Provider of source code * @internal */ export declare type SourceCodeProvider = (file: string) => Promise; /** * Create source code provider. * @internal * @param cwd - working directory * @param transpile - typescript/es transpile function * @param options - transpile options */ export declare const createSourceCodeProvider: (cwd: string, options: CacheOptions, transpile: (file: string) => Promise) => SourceCodeProvider; //# sourceMappingURL=create-source-code-provider.d.ts.map