import { ImportError } from './import.actions'; export declare const importFeatureKey = "@yap/import"; export interface ImportState { loading: boolean; errors: { [p: string]: ImportError[]; } | null; numberOfLines: number; } export declare const initialImportState: ImportState; export declare const importReducer: import("@ngrx/store").ActionReducer;