import { EntityAdapter, EntityState } from '@ngrx/entity'; import { RelationshipInformation } from '../models/tier-III/youth-specific/relationship-information/relationship-information'; export interface LocalState extends EntityState { selectedId: string; loading: boolean; errors: string[]; showRelationshipInformationValidations: boolean; } export declare const adapter: EntityAdapter; export declare const initialState: LocalState;