import type { ParsedSlashCommand } from "./types"; export interface ExecuteResult { success: boolean; replacementText?: string; error?: string; } export declare function executeSlashCommand(parsed: ParsedSlashCommand): Promise;