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