import { State } from "../state"; export interface Action { kind: "data"; id: string; key: string; value: any; } export declare function Apply(state: State, action: Action): State;