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