import { ActionsResolverType, ActionResolverFNType, ActionType } from '../types/advanced-grid.types'; declare type ActionsConfigType = { key: string; action?: ActionResolverFNType; icon?: string | undefined; }[]; /** * This hook resolves the actions and returns * @param actions * @param actionsResolvers * @returns */ declare const useActionsConfig: (actions?: ActionType | undefined, actionsResolvers?: ActionsResolverType | undefined) => ActionsConfigType; export default useActionsConfig;