import * as UserListActions from '../actions/user-list-actions'; import { LocalState } from '../states/user-list.state'; export declare function reducer(state: LocalState, action: UserListActions.UserListActions): LocalState; export declare const getLoadingUserList: (state: LocalState) => boolean; export declare const getErrors: (state: LocalState) => string[]; export declare const getCanAdd: (state: LocalState) => boolean;