import type { Context } from "./context"; import type { Manifest } from "../manifest"; type Compiler = { compile: (options?: { onManifest?: (manifest: Manifest) => void; }) => Promise; cancel: () => Promise; dispose: () => Promise; }; export declare let create: (ctx: Context) => Promise; export {};