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