import { ACTION_TYPE } from '../enum/action-type.enum'; import { LucideIcon } from './lucide.interface'; export interface Action { id: string; type: ACTION_TYPE; description?: string; icon?: LucideIcon; color?: string; style?: string; class?: string; hide?: boolean; disable?: boolean; useSpinner?: boolean; }