import { GameCommandSettleParams, GameState } from '../types';
export declare const settle: ({ row, col, settlement, resources }: GameCommandSettleParams) => (state: GameState | undefined) => GameState | undefined;
export declare const complete: (state: GameState) => (partial: string[]) => string[];
