import { Plugin, ParseOptions, Module, Output, Options, Script, Program } from "./types"; export * from "./types"; import { BundleInput } from "./spack"; /** * Version of the swc binding. */ export declare const version: any; export declare function plugins(ps: Plugin[]): Plugin; export declare class Compiler { parse(src: string, options: ParseOptions & { isModule: false; }): Promise