export declare const actionTypes: { UPDATE_GRID_MARGIN_WIDTH: string; RESET_GRID_MARGIN_WIDTH: string; UPDATE_GRID_MARGIN_HEIGHT: string; RESET_GRID_MARGIN_HEIGHT: string; }; export declare const updateGridMarginWidth: (width: number) => { type: string; width: number; }; export declare const resetGridMarginWidth: () => { type: string; }; export declare const updateGridMarginHeight: (height: number) => { type: string; height: number; }; export declare const resetGridMarginHeight: () => { type: string; };