import { type MutableRefObject } from 'react'; /** * @internal */ export interface ActionSelectionDetails { selectedItemId: string; actionsMenuRef: MutableRefObject | undefined; updateSelectedItem: (itemId: string) => void; } /** * @internal */ export declare const ActionSelectionContext: import("react").Context; export declare const useActionSelection: () => ActionSelectionDetails;