import { ReactNode } from 'react'; import { BulkAction } from './types'; export declare function getBulkActionKey(action: BulkAction, index: number): string; export declare function getBulkActionIndex(actions: BulkAction[], action: BulkAction, fallbackIndex: number): number; export declare function mapBulkActionToDroplistItem(action: BulkAction, index: number): { id: string; content: { label: string; }; beforeContent: import("react/jsx-runtime").JSX.Element; onClick: (() => void) | undefined; disabled: boolean | undefined; itemWrapRender: (item: ReactNode) => import("react/jsx-runtime").JSX.Element; 'data-test-id': string | undefined; };