export interface Action { type: string; [key: string]: any; } export declare function dispatch(action: Action & any): any;