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