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