import { Action } from '@ngrx/store'; import { Slide } from '../../models/slide'; export interface State { slide: Slide; slideId: string; loaded: boolean; } export declare const initialState: State; export declare function reducer(state: State | undefined, action: Action): State; export declare const selectSlide: (state: State) => Slide; export declare const selectSlideLoaded: (state: State) => boolean;