import { EntityAdapter, EntityState } from '@ngrx/entity'; import { OperationalHours } from '../models/operational-hours.model'; export interface LocalState extends EntityState { loadingoperationalHours: boolean; errors: string[]; } export declare const adapter: EntityAdapter; export declare const initialState: LocalState;