import type { ModifyDetails, ModifyFn } from './types.js';
import type { LoaderDefinitionFunction } from 'webpack';
export declare const raw = false;
export type ModifyEntryPointsLoaderOptions = {
    modify: ModifyFn;
    details: ModifyDetails;
};
declare const modifyEntryPointsLoader: LoaderDefinitionFunction<ModifyEntryPointsLoaderOptions>;
export default modifyEntryPointsLoader;
