import { RetrieveAllSupportedInstitutionsInAGivenCountryData, RetrieveAllSupportedInstitutionsInAGivenCountryParams, RetrieveInstitutionData } from '../generated.js';
import { WithClient } from '../types/client.js';

export declare class InstitutionApi {
    private readonly endpoint;
    private readonly client;
    constructor({ client }: WithClient);
    getInstitutions({ country, }: RetrieveAllSupportedInstitutionsInAGivenCountryParams): Promise<RetrieveAllSupportedInstitutionsInAGivenCountryData>;
    getInstitutionById(id: string): Promise<RetrieveInstitutionData>;
}
