jslib-nightly
Version:
SheerID JavaScript Library
14 lines (13 loc) • 509 B
TypeScript
import 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) => JSX.Element;
export {};