import * as programListActions from '../actions/program-list.action'; import { GetLookupsState, LocalState } from '../states/program-list.state'; export declare function reducer(state: LocalState, action: programListActions.ProgramListActions): LocalState; export declare const getLoadingProgramlist: (state: LocalState) => boolean; export declare const getErrors: (state: LocalState) => string[]; export declare const getCanAdd: (state: LocalState) => boolean; export declare function LookupModelsReducer(state: GetLookupsState, action: programListActions.GetLookupsActions): GetLookupsState; export declare const getLoadingLookupModelsDetails: (state: GetLookupsState) => boolean; export declare const getLookupModelsErrors: (state: GetLookupsState) => string[];