import type { MRT_ColumnDef } from 'mantine-react-table'; import type { IconType } from 'react-icons'; interface ActionsColumnProps { buttonTitle: string; icon?: IconType; label: string; showIconButton?: boolean; renderContent?: (data: T) => JSX.Element; handleOnclickButton?: (data: T) => void; } export declare const createTableActionsColumn: >({ buttonTitle, icon, label, showIconButton, renderContent, handleOnclickButton, }: ActionsColumnProps) => MRT_ColumnDef; export {};