UNPKG

@sheerid/jslib-nightly

Version:

SheerID JavaScript Library

14 lines (13 loc) 530 B
import { default as React } from 'react'; import { Organization } from '../../lib/types/types'; interface OrganizationListProps { getItemProps: any; highlightedIndex: number; itemToString: any; organizations: Organization[]; children: React.ReactNode; maxItemsToDisplay?: number; getMenuProps?: any; } export declare const OrganizationListComponent: ({ getItemProps, highlightedIndex, organizations, itemToString, children, maxItemsToDisplay, }: OrganizationListProps) => React.JSX.Element; export {};