import type { Plugin } from "esbuild"; import type { NormalizedBundlerLogger } from "../types.d.ts"; declare const FRONTEND_CONFIG_STYLES_NAMESPACE = "package-frontend-config-styles"; type FrontendConfigStylesPluginOptions = { annotateSources: boolean; logger: NormalizedBundlerLogger; rootDir: string; sourcemapEnabled: boolean; }; declare function createFrontendConfigStylesPlugin(options: FrontendConfigStylesPluginOptions): Plugin; export { FRONTEND_CONFIG_STYLES_NAMESPACE, createFrontendConfigStylesPlugin }; //# sourceMappingURL=frontend-config-styles.d.ts.map