export interface RunCommandParams { command: string; adapter?: string; timeout?: number; } export declare function runCommand(params: RunCommandParams): Promise<{ success: boolean; output: string; error?: string; }>;