import { EntityAdapter, EntityState } from '@ngrx/entity'; import { SkillsPreferences } from '../models/skill-information.model'; export interface SkillInformationState extends EntityState { selectedSkillInformationId: number; loadingSkillInformation: boolean; errors: string[]; } export declare const adapter: EntityAdapter; export declare const initialSkillInformationState: SkillInformationState;