import { Command } from '../Command.js';
export declare class ChatCommand extends Command {
    readonly name = "chat";
    readonly description = "Start a conversation with the crew";
    readonly syntax = "[options]";
    readonly examples: string[];
    execute(args: string[]): Promise<void>;
    /**
     * Parse command line arguments for the chat command
     * Optimized for handling various argument formats
     */
    protected parseArgs(args: string[]): {
        model: string;
        verbose: boolean;
        stream: boolean;
    };
}
//# sourceMappingURL=ChatCommand.d.ts.map