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