import { Action } from '@ngrx/store'; export declare enum ContentActionTypes { DisableMargin = "[Content] Disable Margin", EnableMargin = "[Content] Enable Margin" } export declare class DisableMargin implements Action { readonly type = ContentActionTypes.DisableMargin; } export declare class EnableMargin implements Action { readonly type = ContentActionTypes.EnableMargin; } export declare type ContentActions = DisableMargin | EnableMargin;