import type { ModelRegistry } from "@earendil-works/pi-coding-agent"; import type { CommandContext, CommandHandler, ParsedModelCommand } from "./types.js"; export type { ParsedModelCommand } from "./types.js"; export declare function parseModelCommand(text: string): ParsedModelCommand | null; export declare class ModelCommandHandler implements CommandHandler { private readonly modelRegistry; constructor(modelRegistry: ModelRegistry); tryHandle(context: CommandContext): Promise; } //# sourceMappingURL=model.d.ts.map