import { EntityAdapter, EntityState } from '@ngrx/entity'; import { ClientPreferences } from '../models/isp/client-preferences/client-preferences'; export interface LocalState extends EntityState { selectedId: string; loading: boolean; errors: string[]; showClientPreferencesValidations: boolean; } export declare const adapter: EntityAdapter; export declare const initialState: LocalState;