import { EntityAdapter, EntityState } from '@ngrx/entity'; import { ProgramCost } from '../models/program-cost/program-cost'; export interface LocalState extends EntityState { loadingProgramCost: boolean; selectedProgramCostId: number; showProgramCostValidations: boolean; errors: string[]; } export declare const adapter: EntityAdapter; export declare const initialState: LocalState;