import { State } from "../state"; export interface Action { kind: "position"; id: string; x?: number; y?: number; } export declare function Apply(state: State, action: Action): State;