import { LoaderError } from './LoaderError.js'; /** * Describes a {@link LoaderErrorType.EmptyModule} loader error and adds a path for easy identification. */ declare class MissingExportsError extends LoaderError { /** * The path of the module that did not have exports. */ readonly path: string; constructor(path: string); } export { MissingExportsError };