import { Action } from '@ngrx/store'; import { ViewDesignerState } from './view-designer.state'; export declare const VIEWDESIGNER_FEATURE_KEY = "reportViewDesigner"; export interface ViewDesignerPartialState { readonly [VIEWDESIGNER_FEATURE_KEY]: ViewDesignerState; } export declare const initialState: ViewDesignerState; export declare function reducer(state: ViewDesignerState | undefined, action: Action): ViewDesignerState;