import type { ContentBlockParam } from '@anthropic-ai/sdk/resources'; export type SlashDispatchResult = { kind: 'passthrough'; } | { kind: 'skill'; message: ContentBlockParam[]; } | { kind: 'repl-only'; command: string; } | { kind: 'unknown'; command: string; suggestion?: string; }; export declare function resetSlashDispatchRegistration(): void; export declare function classifySlashInput(text: string, cwd: string, sessionId: string | undefined): Promise;