import type { Plugin } from "esbuild"; import type { NormalizedBundlerLogger } from "../types.d.ts"; declare const STATIC_ICONS_SPECIFIER = "@trebired/frontend/static-icons"; type FrontendStaticIconsPluginOptions = { environment?: string; logger: NormalizedBundlerLogger; rootDir: string; }; declare function createFrontendStaticIconsPlugin(options: FrontendStaticIconsPluginOptions): Plugin; export { STATIC_ICONS_SPECIFIER, createFrontendStaticIconsPlugin }; export type { FrontendStaticIconsPluginOptions }; //# sourceMappingURL=frontend-static-icons.d.ts.map