import { BuildingEnum, GameCommandBuildParams, GameState, StateReducer } from '../types';
export declare const allowPriorToUse: (building: BuildingEnum) => StateReducer;
export declare const build: ({ row, col, building }: GameCommandBuildParams) => StateReducer;
export declare const complete: (state: GameState) => (partial: string[]) => string[];
