/** * SlashCommandComponent - renders a bordered box for slash command messages * showing the command name as a heading and truncated content that can be * expanded with ctrl+e. The full content is still sent to the assistant. */ import { Container } from '@mariozechner/pi-tui'; export declare class SlashCommandComponent extends Container { private commandName; private contentLines; private expanded; constructor(commandName: string, content?: string); matches(commandName: string, content: string): boolean; setExpanded(expanded: boolean): void; private rebuild; } //# sourceMappingURL=slash-command.d.ts.map