import { ActionReducerMap } from '@ngrx/store'; import { GetTagsSuccess, GetResourcesSuccess } from './actions'; import { Tag } from '@bidi/common-services'; export declare function tags(state: {}, { type, payload }: GetTagsSuccess): {}; export declare function resources(state: any, { type, payload }: GetResourcesSuccess): any; export declare function selectedTag(state: any, { type, payload }: { type: any; payload: any; }): any; export interface State { tags: { [type: string]: Tag[]; }; resources: {}; selectedTag: any; } export declare const reducers: ActionReducerMap;