import { type Scope } from "../lib/opencode.js"; declare const _default: import("citty").CommandDef<{ readonly scope: { readonly type: "enum"; readonly options: ["global", "project"]; readonly default: "global"; readonly description: "Initialize globally or per-project."; }; readonly plugins: { readonly type: "string"; readonly default: "@osovv/vv-opencode"; readonly description: "Comma-separated list of plugins to enable."; }; readonly "non-interactive": { readonly type: "boolean"; readonly default: false; readonly description: "Skip interactive prompts and use defaults."; }; readonly "config-dir": { readonly type: "string"; readonly description: "Override the global config home."; }; }>; export default _default; export declare function runInit(options: { scope: Scope; cwd: string; configDir?: string; nonInteractive: boolean; }): Promise;