import type { PropsWithChildren } from "react"; import React from "react"; interface DataListActionsMenuProps { readonly visible: boolean; readonly position: { readonly x: number; readonly y: number; }; readonly onRequestClose: () => void; } export declare function DataListActionsMenu({ visible, position, onRequestClose, children, }: PropsWithChildren): React.JSX.Element; export {};