import { LoaderContext } from "webpack"; //#region src/loader.d.ts interface DevInspectorLoaderOptions { /** * Enable/disable the loader * @default true in development, false in production */ enabled?: boolean; } declare function devInspectorLoader(this: LoaderContext, source: string): string; declare const raw = false; //#endregion export { DevInspectorLoaderOptions, devInspectorLoader as default, raw };