/** * Command factories for v2 sandbox bash environments. * * Provides a `sandlot` command with subcommands: * - sandlot build Build the project * - sandlot typecheck Type check without building * - sandlot install Install packages * - sandlot uninstall Remove packages * - sandlot help Show help */ import type { SandboxRef } from "./types"; export type { SandboxRef } from "./types"; export { formatSize, formatDiagnostics, formatBundleErrors, formatBuildFailure, } from "./types"; /** * Create the main `sandlot` command with all subcommands. * * The sandlot command is a dispatcher that routes to subcommand handlers. */ export declare function createSandlotCommand(sandboxRef: SandboxRef): import("just-bash/browser").Command; /** * Create all default sandbox commands. * * Currently just the `sandlot` command which dispatches to subcommands. */ export declare function createDefaultCommands(sandboxRef: SandboxRef): import("just-bash/browser").Command[]; //# sourceMappingURL=index.d.ts.map