import { LocationsListModel } from '../models/locations.model'; import { EntityAdapter, EntityState } from '@ngrx/entity'; export interface LocationsState extends EntityState { loadinglocations: boolean; errors: string[]; } export declare const adapter: EntityAdapter; export declare const initiallocationsDetailsState: LocationsState;