import { AppAction } from './actions';
declare const logger: import("redux").Middleware<{}, any, import("redux").Dispatch<import("redux").AnyAction>>;
declare const customMiddleware: (store: any) => (next: any) => (action: AppAction) => any;
declare const throttleMiddleware: (store: any) => (next: any) => (action: AppAction) => any;
export { logger, customMiddleware, throttleMiddleware };
