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