import { EntityAdapter, EntityState } from '@ngrx/entity'; import { CommunityResource } from '../models/tier-III/stability/community-resource/community-resource'; export interface LocalState extends EntityState { selectedId: string; loading: boolean; errors: string[]; showCommunityResourceValidations: boolean; } export declare const adapter: EntityAdapter; export declare const initialState: LocalState;