import { State, SeatInfo } from "../../state"; export interface Action { kind: "seat/create"; seat: SeatInfo; } export declare function Apply(state: State, action: Action): State;