import { GameState, GameCommandBuyDistrictParams } from '../types';
export declare const buyDistrict: ({ side, y }: GameCommandBuyDistrictParams) => (state?: GameState | undefined) => GameState | undefined;
export declare const complete: (state: GameState) => (partial: string[]) => string[];
