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