import { default as React } from 'react'; import { OrganizationSearchResp, DatabaseId, Locale } from '../lib/types/types'; interface FetchOrganizationsProps { getItemProps: any; highlightedIndex: any; itemToString: any; minimumSearchValueLength: number; onLoaded: any; programId: DatabaseId; orgSearchUrl?: string; locale?: Locale; urlAddSchoolForm?: string; openOrgSearchEnabled?: boolean; onClickAddSchool?: () => void; onTipsShown?: () => void; searchUrlParams?: Record; /** @deprecated */ countryCode?: string; /** @deprecated orgSearchTags has no affect, pass a full orgSearchUrl, instead */ orgSearchTags?: string; /** @deprecated pass a complete orgSearchUrl instead, using the `name` parameter with a value of what you would have given `searchValue` */ searchValue?: string; /** @deprecated. Menu is always mounted now, up in TypeaheadComponent. */ getMenuProps?: any; } export declare const getAttribution: (organizations: OrganizationSearchResp) => React.ReactNode; /** * Support deprecated prop "searchValue" * @TODO remove searchValue prop and this function in v2 * @param orgSearchUrl */ export declare const updateSearchUrl: (orgSearchUrl: string, searchValue: string, newParams?: Record) => string; export declare const FetchOrganizationsComponent: React.FC; export {};