import { CreateHttpClientParams } from './commonTypes'; export * from './exportTypes'; export { RestAdapter } from './restAdapter'; export type { AxiosError } from 'axios'; interface UserAgentParams { /** * Application name and version e.g myApp/version */ application?: string; /** * Integration name and version e.g react/version */ integration?: string; feature?: string; } export declare type ClientOptions = CreateHttpClientParams & UserAgentParams; declare function createClient(params: ClientOptions): import("./commonTypes").ClientAPI; export { createClient };