import { AnyAction } from 'redux';
import { MapBoundsState } from './bounds';
import { MapDirectionsState } from './directions';
import { MapFlagsState } from './flags';
import { MapFilterState } from './filters';
import { MapMarkersState } from './markers';
export interface MapState {
    bounds: MapBoundsState;
    directions: MapDirectionsState;
    flags: MapFlagsState;
    filters: MapFilterState;
    markers: MapMarkersState;
}
export * from './bounds';
export * from './directions';
export * from './flags';
export * from './filters';
export * from './markers';
export declare const mapReducer: (state: {}, action: AnyAction) => {};
