import { EntityAdapter, EntityState } from '@ngrx/entity'; import { ChildSupport } from '../../models/special-circumstances/child-support/child-support'; export interface LocalState extends EntityState { loadingChildSupportDetails: boolean; selectedChildSupportId: number; errors: string[]; showChildSupportValidations: boolean; } export declare const adapter: EntityAdapter; export declare const initialState: LocalState;