UNPKG

@salesforce/design-system-react

Version:

Salesforce Lightning Design System for React

20 lines (18 loc) 502 B
declare module '@salesforce/design-system-react/components/lookup/private/menu' { import React from 'react'; type Props = { boldRegex?: RegExp; emptyMessage?: string | React.ReactElement; filterWith?: (v: any) => any; focusIndex?: number; getListLength?: (v: any) => any; iconCategory?: string; items?: any[]; label?: string; listLength?: number; searchTerm?: string; setFocus?: (v: any) => any; }; function Component(props: Props): JSX.Element; export default Component; }