import { State } from "../../state"; import * as Create from "./create"; import * as Delete from "./delete"; export declare type Action = Create.Action | Delete.Action; export declare function Apply(state: State, action: Action): State;