import { DropdownAction } from '../DropdownMenu/DropdownMenu'; /** * Props for the FloatingActionBar component */ export interface FloatingActionBarProps { /** Array of selected items/boxes */ selectedItemCount: number; /** Total number of items in the dataset */ totalItemCount: number; /** Optional array of action buttons to display in the bar. */ actions: DropdownAction[]; /** Optional callback function to execute when the close button is clicked */ onClose?: () => void; /** Optional prop to add a test id to the FloatingActionBar for QA testing */ qaTestId?: string; } declare const FloatingActionBar: ({ selectedItemCount, totalItemCount, actions, onClose, qaTestId, }: FloatingActionBarProps) => import("react/jsx-runtime").JSX.Element; export default FloatingActionBar;