import type { ReactElement } from "react"; import React from "react"; import type { DataListActionProps, DataListItemActionsProps, DataListObject } from "../../DataList.types"; export declare function DataListItemActions(_: DataListItemActionsProps): null; interface InternalDataListItemActionsProps { readonly actions: ReactElement>[]; } export declare function InternalDataListItemActions({ actions, }: InternalDataListItemActionsProps): React.JSX.Element; export {};