import { Image } from './image.actions'; export declare const imageFeatureKey = "@yap/image"; export interface ImageState { loading: boolean; list: Image[]; lastAdded?: string; } export declare const initialImageState: ImageState; export declare const imageReducer: import("@ngrx/store").ActionReducer;