import type { DevToolsSys } from "@builder.io/dev-tools/core";
import type { CLIArgs } from "../index";
import type { EnsureConfigResult } from "types";
export type InstallOutcome = EnsureConfigResult["outcome"] | "install-failed";
export declare const installJsxPlugin: (sys: DevToolsSys, args: CLIArgs) => Promise<{
    installOutcome: InstallOutcome;
}>;
