import { type ToolDefinition } from "@opencode-ai/plugin"; /** * btca_ask tool * * Requires: btca CLI (Bluetooth Classic Audio) * * This tool allows interaction with Bluetooth Classic Audio devices. * It can send commands to paired Bluetooth devices, query device status, * and control audio playback. * * Before using, you need to: * 1. Install btca CLI: npm install -g btca * 2. Pair your Bluetooth device * 3. Connect to the device: btca connect * * If the dependency is not available, this tool returns an error message. */ export interface BtcaAskArgs { command: "status" | "play" | "pause" | "next" | "prev" | "volume" | "list" | "connect" | "disconnect"; device?: string; value?: string; } export declare function btcaAsk(args: BtcaAskArgs): Promise; export declare const btcaAskTool: ToolDefinition;