import { GridChildType, PositionX, PositionY, PositionWidth, PositionHeight } from '../state/index.js'; export declare const actionTypes: { UPDATE_GRID_CHILD_TYPE: string; RESET_GRID_CHILD_TYPE: string; UPDATE_GRID_CHILD_X: string; RESET_GRID_CHILD_X: string; UPDATE_GRID_CHILD_Y: string; RESET_GRID_CHILD_Y: string; UPDATE_GRID_CHILD_WIDTH: string; RESET_GRID_CHILD_WIDTH: string; UPDATE_GRID_CHILD_HEIGHT: string; RESET_GRID_CHILD_HEIGHT: string; REMOVE_GRID_CHILD: string; }; export declare const updateGridChildType: (pagePath: Array, gridPath: Array, childType: GridChildType) => { type: string; pagePath: number[]; gridPath: number[]; childType: GridChildType; }; export declare const resetGridChildType: (pagePath: Array, gridPath: Array) => { type: string; pagePath: number[]; gridPath: number[]; }; export declare const updateGridChildX: (pagePath: Array, gridPath: Array, x: PositionX) => { type: string; pagePath: number[]; gridPath: number[]; x: PositionX; }; export declare const resetGridChildX: (pagePath: Array, gridPath: Array) => { type: string; pagePath: number[]; gridPath: number[]; }; export declare const updateGridChildY: (pagePath: Array, gridPath: Array, y: PositionY) => { type: string; pagePath: number[]; gridPath: number[]; y: PositionY; }; export declare const resetGridChildY: (pagePath: Array, gridPath: Array) => { type: string; pagePath: number[]; gridPath: number[]; }; export declare const updateGridChildWidth: (pagePath: Array, gridPath: Array, width: PositionWidth) => { type: string; pagePath: number[]; gridPath: number[]; width: PositionWidth; }; export declare const resetGridChildWidth: (pagePath: Array, gridPath: Array) => { type: string; pagePath: number[]; gridPath: number[]; }; export declare const updateGridChildHeight: (pagePath: Array, gridPath: Array, height: PositionHeight) => { type: string; pagePath: number[]; gridPath: number[]; height: PositionHeight; }; export declare const resetGridChildHeight: (pagePath: Array, gridPath: Array) => { type: string; pagePath: number[]; gridPath: number[]; }; export declare const removeGridChild: (pagePath: Array, gridPath: Array) => { type: string; pagePath: number[]; gridPath: number[]; };