import { type Command } from "commander"; import type { CliContainer } from "../../container.js"; export interface RuntimeInitOptions { type?: string; dockerfile?: boolean; } export declare function registerRuntimeInitCommand(runtime: Command, root: Command, container: CliContainer): void;