/** Platform API roots (formerly separate env vars per service). */ export declare const platformApi: { base: string; revision: string; catalog: string; editor: string; }; export declare const parserApiBase: string; export declare const lexiconApiBase: string; declare const api: import("axios").AxiosInstance; export { createApiClient } from './createApiClient'; export type { CreateApiClientOptions, ServerErrorHandling } from './createApiClient'; export { applyAuthErrorHandling } from './applyAuthErrorHandling'; export type { ApplyAuthErrorHandlingOptions, AuthErrorHandling, } from './applyAuthErrorHandling'; export { isHandledApiError, isHandledAuthError, isAccessDeniedApiError, getHttpErrorStatus, markApiErrorHandled, markAuthErrorHandled, } from './apiHandledError'; export type { ApiErrorHandled, AuthErrorHandled } from './apiHandledError'; export { buildClientErrorContext, dispatchApiError, dispatchAccessDeniedError, dispatchClientError, dispatchServerApiError, } from './dispatchApiError'; export { resolveAccessDeniedMessage } from './resolveAccessDeniedMessage'; export default api;