import { EntityAdapter, EntityState } from '@ngrx/entity'; import { Sort } from '@angular/material/sort'; import { PageEvent } from '@angular/material/paginator'; import { EmploymentDeclarationHistory } from '../models/employment-declaration/employment-declaration-history'; import { EmployerIncomeHours } from '../models/employment-declaration/employer-income-hours'; export interface LocalState extends EntityState { sort: Sort; page: PageEvent; loadingEmploymentDecalration: boolean; errors: string[]; showEmploymentDecalrationValidations: boolean; selectedEmploymentDecalrationId: number; thresholdMet: boolean; employerIncomeHours: EmployerIncomeHours[]; } export declare const adapter: EntityAdapter; export declare const initialState: LocalState;