/** * StatusLine - handles the status bar display (location, score, turns) */ import type { StatusElements } from '../types'; export declare class StatusLine { private statusLocation; private statusScore; constructor(elements: StatusElements); /** * Update the status line with location, score, and turns */ update(location: string, score: number, turns: number): void; /** * Set the location display */ setLocation(location: string): void; /** * Set the score and turns display */ setScoreTurns(score: number, turns: number): void; } //# sourceMappingURL=StatusLine.d.ts.map