import { HttpError } from './errors';
import { JobAgentClient, LookupClient, VacancyClient } from './clients';
declare global {
    interface ApiClient {
        HttpError: typeof HttpError;
        JobAgentClient: typeof JobAgentClient;
        VacancyClient: typeof VacancyClient;
        LookupClient: typeof LookupClient;
    }
    interface Window {
        mindkey: {
            apiClient: ApiClient;
        };
    }
}
