import { GridColumn, Action, ActionT, DataGridConfig } from '../types/HaloTypes'; export interface GridConfigModalOptions { gridId?: string; pageSize?: number; gridColumns?: Array; } export interface GridConfigArgs { gridId?: string; onConfigChanged?: ActionT; onPageSizeChanged?: ActionT; onReset?: Action; } export declare const useGridConfigTool: (args: GridConfigArgs) => { showConfigModal: (options: GridConfigModalOptions) => void; loadGridConfig: (callback?: ActionT) => void; };