@sheerid/jslib-nightly
Version:
SheerID JavaScript Library
15 lines (13 loc) • 531 B
TypeScript
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 {};