import { type FC, type ReactNode } from 'react'; export type SelectionBulkBarPlacement = 'floating' | 'absolute'; export interface SelectionBulkBarProps { /** Override the toolbar accessible name. Defaults to "Bulk actions". */ 'aria-label'?: string; 'data-testid'?: string; /** * How the bar is positioned. * * - `'floating'` (default): portaled to `document.body` and pinned to the * bottom of the viewport with `position: fixed`. Use for page-level * selection lists. * - `'absolute'`: rendered in place with `position: absolute`. Anchors to * the nearest positioned ancestor — by default the enclosing `Selection` * root (which is `position: relative`), so the bar pins to the bottom of * the selection area. Use this inside a Drawer or any other bounded * container. */ placement?: SelectionBulkBarPlacement; children?: ReactNode; } export declare const SelectionBulkBar: FC;