import { Action, Column } from './types'; declare type ActionButtonsProps = { actions: Action[]; rowIndex: number; columnData: Column[]; fieldValues?: Record; onClick: (data: any) => void | Promise; forceInlineButtons?: boolean; tableId?: string; buttonLoaders?: Record; canDeleteRows?: boolean; onDeleteRow?: (rowIndex: number) => void; }; export declare function ActionButtons({ actions, rowIndex, columnData, fieldValues: fieldValuesProp, onClick, forceInlineButtons, tableId, buttonLoaders, canDeleteRows, onDeleteRow }: ActionButtonsProps): import("@emotion/react/jsx-runtime").JSX.Element | null; export {}; //# sourceMappingURL=Actions.d.ts.map