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