import { ActionType, FormOptions } from '../../../interfaces'; import { TableProps } from '../../../molecules/table/Table'; export type ActionsTableProps = Omit, "columns"> & { onAddAction?: (actionName: string) => void; availableActions?: { label: string; value: string; }[]; i18n?: FormOptions["i18n"]; }; export declare function ActionsTable({ availableActions, onAddAction, ...props }: ActionsTableProps): import("react/jsx-runtime").JSX.Element;