import { State, MoveResult } from '../board';
export declare const placement = "grid";
export declare function create(this: State): string;
export declare function update(this: State, x: number, y: number, value: -1 | 1): MoveResult;
