import * as vite from 'vite'; import * as debug from '@solid-devtools/debugger/types'; export declare const enum DevtoolsModule { Main = "solid-devtools", Setup = "solid-devtools/setup" } export type LocatorPluginOptions = { /** Choose in which IDE the component source code should be revealed. */ targetIDE?: Exclude; /** * Holding which key should enable the locator overlay? * @default 'Alt' */ key?: debug.LocatorOptions['key']; /** Inject location attributes to jsx templates */ jsxLocation?: boolean; /** Inject location information to component declarations */ componentLocation?: boolean; }; export type DevtoolsPluginOptions = { /** Add automatic name when creating signals, memos, stores, or mutables */ autoname?: boolean; locator?: boolean | LocatorPluginOptions; }; export declare const devtoolsPlugin: (_options?: DevtoolsPluginOptions) => vite.PluginOption; //# sourceMappingURL=vite.d.ts.map