import { FC, RefObject } from 'react'; import { Organization } from './types'; export declare const OrganizationList: FC<{ organizations: Organization[]; searchedOrganizations: Organization[]; currentOrganizationId?: string; searchQuery: string; onSearchChange: (value: string) => void; onSelect: (org: Organization) => void; searchInputRef: RefObject; }>; //# sourceMappingURL=OrganizationList.d.ts.map