export type ExactModuleSourceReader = (path: string, byteLimit: number) => Promise; /** * Read one module source through an exact byte-boundary and decode it as strict * UTF-8. Callers must provide the secured exact reader; * an unbounded compatibility read is never accepted. */ export declare function readBoundedModuleSource(readWithinLimit: ExactModuleSourceReader | undefined, path: string, maxBytes?: number): Promise; //# sourceMappingURL=module-source-reader.d.ts.map