import * as esbuild from "esbuild"; import { type Manifest } from "../../manifest"; import type * as Channel from "../../channel"; import type { Context } from "../context"; import type { LazyValue } from "../lazyValue"; type Compiler = { compile: () => Promise; cancel: () => Promise; dispose: () => Promise; }; export declare const create: (ctx: Context, refs: { manifestChannel: Channel.Type; lazyCssBundleHref: LazyValue; }) => Promise; export {};