import React, { Dispatch, RefObject, SetStateAction } from 'react'; import { DiscriminatedTablePaginationProps, TableExpandable, TableItem, TableProps, TableSelectable } from '../types'; export interface ActionsProps { customActions?: React.ReactNode; forwardedRef: RefObject; itemName?: string; items: T[]; pagination?: DiscriminatedTablePaginationProps; selectedItems: TableSelectable['selectedItems']; stickyHeader?: boolean; tableId: string; getChildren?: TableExpandable['getChildren']; onSelectionChange?: TableSelectable['onSelectionChange']; getRowId: NonNullable['getRowId']>; setSelectedParentRowsCrossPages: Dispatch>>; selectedParentRowsCrossPages: Set; isChildrenRowsSelectable?: boolean; } export declare const Actions: ({ customActions, forwardedRef, itemName, items, pagination, selectedItems, stickyHeader, tableId, getChildren, onSelectionChange, getRowId, setSelectedParentRowsCrossPages, selectedParentRowsCrossPages, isChildrenRowsSelectable, ...props }: ActionsProps) => React.JSX.Element; //# sourceMappingURL=Actions.d.ts.map