import { ActionReducerMap, MemoizedSelector } from '@ngrx/store'; import * as ventureEdList from '../states/employment-declaration-list.state'; import { VentureEdListLocalState } from '../states/employment-declaration-list.state'; import { EmploymentDeclarationListItem } from '../models/employment-declaration-list-item.model'; export interface VentureEdListState { ventureEdList: ventureEdList.VentureEdListLocalState; } export interface State { ventureEdList: VentureEdListState; } export declare const reducers: ActionReducerMap; export declare const getVentureEdListState: MemoizedSelector; export declare const getVentureEdListEntitiesState: MemoizedSelector; export declare const getListLoading: MemoizedSelector; export declare const getInitiateEdLoading: MemoizedSelector; export declare const getListErrorMessages: MemoizedSelector; export declare const getCanInitiateED: MemoizedSelector; export declare const getEmpDeclarationId: MemoizedSelector; export declare const getVentureEdListIds: (state: VentureEdListState) => string[] | number[], getVentureEdListEntities: (state: VentureEdListState) => import("@ngrx/entity/src/models").Dictionary, getAllVentureEdList: (state: VentureEdListState) => EmploymentDeclarationListItem[];