import { EntityAdapter, EntityState } from '@ngrx/entity'; import { OpportunityInfo } from '../models/opportunity-info/opportunity-info'; export interface LocalState extends EntityState { loadingOpportunityInfo: boolean; selectedOpportunityInfoId: number; showOpportunityInfoValidations: boolean; errors: string[]; } export declare const adapter: EntityAdapter; export declare const initialState: LocalState;