import { State } from "../state"; /** * An action that is mostly used for testing after-effects * of applying an action to the state. */ export interface Action { kind: "noop"; } export declare function Apply(state: State, _: Action): State;