import React from 'react'; import type { RefCallback } from 'react'; interface DSMobileContextMenuItemPropsT { label: string; title: string; leftProp: JSX.Element; isGroup: boolean; isMulti: boolean; isSelected: boolean; singleSelect: boolean; onClick: (e: any) => void; value: string; innerRef: React.MutableRefObject | RefCallback; } declare const DSMobileContextMenuItem: { ({ label, title, leftProp, rightAddon, isGroup, isMulti, singleSelect, isSelected, onClick, value, innerRef, }: DSMobileContextMenuItemPropsT): JSX.Element; displayName: string; }; declare const DSMobileContextMenuItemWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").DocumentedReactComponent; export { DSMobileContextMenuItem, DSMobileContextMenuItemWithSchema };