/** * Application-wide constants */ /** Supported language codes (duplicated from core/models to avoid shared → core dependency) */ type Language = 'en' | 'ja'; /** Default workflow name when none specified */ export declare const DEFAULT_WORKFLOW_NAME = "default"; /** Default language for new installations */ export declare const DEFAULT_LANGUAGE: Language; /** Companion reviewers are opt-in unless runtime.yaml explicitly enables them. */ export declare const DEFAULT_COMPANION_ENABLED = false; /** Slash commands recognized in interactive mode */ export declare const SlashCommand: { readonly Accept: "/accept"; readonly Go: "/go"; readonly Tell: "/tell"; readonly Retry: "/retry"; readonly Replay: "/replay"; readonly Cancel: "/cancel"; readonly Open: "/open"; readonly Resume: "/resume"; readonly PasteImage: "/paste-image"; readonly Setup: "/setup"; readonly Workflow: "/workflow"; readonly Mode: "/interaction"; readonly Provider: "/provider"; readonly Model: "/model"; readonly Effort: "/effort"; readonly Verify: "/verify"; }; export type SlashCommand = typeof SlashCommand[keyof typeof SlashCommand]; export declare const INTERACTIVE_SETTING_COMMANDS: ReadonlySet; export {}; //# sourceMappingURL=constants.d.ts.map