import type { Move } from '@/types/index'; import type { Game } from '@/engine/game'; import type { AIEngine, AIConfig, AIAnalysis, MoveEvaluation } from './engine'; export declare class RandomAI implements AIEngine { readonly name = "Random"; readonly config: Required; constructor(config?: AIConfig); getBestMove(game: Game): Promise; analyze(game: Game): Promise; evaluateMove(_game: Game, move: Move): Promise; private sleep; } //# sourceMappingURL=random.d.ts.map