import { ContentActions } from '../actions/content.actions'; export interface ContentState { disableMargin: boolean; } export declare const contentInitialState: ContentState; export declare function contentReducer(state: ContentState, action: ContentActions): ContentState;