import * as roleListState from '../states/role-list.state'; import { LocalState } from '../states/role-list.state'; import { ActionReducerMap, MemoizedSelector } from '@ngrx/store'; import { Role } from '../models/role'; export interface RoleListState { RoleList: roleListState.LocalState; } export interface State { RoleList: RoleListState; } export declare const reducers: ActionReducerMap; export interface DetailState { RoleList: roleListState.LocalState; } export declare const getRoleListState: MemoizedSelector; export declare const getRoleListEntitiesState: MemoizedSelector; export declare const getRoleListLoading: MemoizedSelector; export declare const getRoleListErrorMessages: MemoizedSelector; export declare const getRoleListIds: (state: State) => string[] | number[], getRoleListEntities: (state: State) => import("@ngrx/entity/src/models").Dictionary, getAllRoleList: (state: State) => Role[];