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