import { GridCols, GridRows } from '../state/index.js'; export declare const actionTypes: { UPDATE_GRID_COLS: string; RESET_GRID_COLS: string; UPDATE_GRID_ROWS: string; RESET_GRID_ROWS: string; SHOW_GRID: string; HIDE_GRID: string; TOGGLE_GRID_VISIBILITY: string; }; export declare const updateGridCols: (pagePath: Array, gridPath: Array, cols: GridCols) => { type: string; pagePath: number[]; gridPath: number[]; cols: GridCols; }; export declare const resetGridCols: (pagePath: Array, gridPath: Array) => { type: string; pagePath: number[]; gridPath: number[]; }; export declare const updateGridRows: (pagePath: Array, gridPath: Array, rows: GridRows) => { type: string; pagePath: number[]; gridPath: number[]; rows: GridRows; }; export declare const resetGridRows: (pagePath: Array, gridPath: Array) => { type: string; pagePath: number[]; gridPath: number[]; }; export declare const showGrid: () => { type: string; }; export declare const hideGrid: () => { type: string; }; export declare const toggleGridVisibility: () => { type: string; };