import { EntityAdapter, EntityState } from '@ngrx/entity'; import { Sort } from '@angular/material/sort'; import { PageEvent } from '@angular/material/paginator'; import { LocationListItem } from '../models/location-list-item.model'; import { LookupModels } from '../models/lookups.model'; export interface LocalState extends EntityState { sort: Sort; page: PageEvent; loadingAgencyDetails: boolean; selectedVersioningId: number; errors: string[]; } export declare const adapter: EntityAdapter; export declare const initialState: LocalState; export interface GetLookupsState extends EntityState { loadingGetLookups: boolean; errors: string[]; } export declare const lookupModelsdapter: EntityAdapter; export declare const lookupModelsInitialLookupsDetailsState: GetLookupsState;