import React from 'react'; import './BulkActionPanel.scss'; export type BulkActionItem = { label: string | React.ReactNode; value?: string; cb: (actionCbArg: { data: any; type: string; }) => void; type?: string; icon?: string; showSelected?: boolean; testId?: string; ariaLabel?: string; [key: string]: any; }; export type BulkActionPanelProps = { bulkActionList: BulkActionItem[]; selectedData: any; updatedParentWidth: number; testId?: string; trimActionsFromLeft?: boolean; activeValue?: string; onActiveValueChange?: (value: string) => void; onClose?: () => void; arrangeFromStart?: boolean; }; export declare const BulkActionPanel: React.FC; export declare const BulkActionPanelItem: ({ bulkActionList, hanldeClick, showDropdown, sliceCount, activeValue, onActiveValueChange, onClose, arrangeFromStart, originalSliceCount, trimActionsFromLeft }: { bulkActionList: any; hanldeClick: any; showDropdown: any; sliceCount: any; activeValue: any; onActiveValueChange: any; onClose: any; arrangeFromStart: any; originalSliceCount: any; trimActionsFromLeft?: boolean; }) => React.JSX.Element;