import { OrganizationSearchResp, AddSchoolRequestViewModel } from '../types/types';
declare type FetchOrganizationResponse = Promise<OrganizationSearchResp | undefined>;
export declare function fetchProgramOrganizations(orgSearchUrl: string, searchTerm: string, countryCode?: string, searchTags?: string): FetchOrganizationResponse;
export declare const fetchRequestOrganizations: (url: string) => Promise<Object>;
export declare function addSchool(request: AddSchoolRequestViewModel): Promise<Object>;
export {};
