/// import { ActionSchema } from "../../interfaces"; import { TableProps } from "../table/table.component"; export declare type ActionsTableProps = Omit, "columns"> & { onAddAction?: (actionName: string) => void; availableActions?: { label: string; value: string; }[]; }; export declare function ActionsTable({ disableFilters, disablePagination, availableActions, onAddAction, ...props }: ActionsTableProps): JSX.Element;