import { Template } from "../schema"; import { State } from "../state"; export interface Action { kind: "create"; id: string; template: Template.Entry; } export declare function Apply(state: State, action: Action): State;