import type { Plugin } from '@web/dev-server-core'; export interface Options { resolveHtmlUrl?: (fileUrl: string, rootUrl: string) => string; providers?: Record; inputMap?: { imports?: Record; scopes?: Record>; }; resolutions?: Record; ignore?: string[]; typeScript?: boolean; } export declare function importMapGeneratorPlugin(options?: Partial): Plugin;