import { State } from "../state"; export interface Action { kind: "add-to"; id: string; parent: string | null; } export declare function Apply(state: State, action: Action): State;