/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { Config } from '@shenjianz/geminicli-balancer-core'; import { SlashCommand } from '../ui/commands/types.js'; export declare class CommandService { private config; private commandLoader; private commands; constructor(config: Config | null, commandLoader?: (config: Config | null) => Promise); loadCommands(): Promise; getCommands(): SlashCommand[]; }