import { AppState } from "./state"; export type Reducer = (prevState: AppState, action: any) => AppState; export declare function reducer(prevState: AppState, action: any): AppState;