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