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 {};
