import { RequestOptions } from 'node:http'; import { APIQueryParams } from './types.cjs'; /** * Axios config, customisable */ declare const axiosConfig: Omit; interface AxiosCallbacks { onStart?: (url: string, params: APIQueryParams) => void; onSuccess?: (url: string, params: APIQueryParams) => void; onError?: (url: string, params: APIQueryParams, errorCode?: number) => void; } /** * Customisable callbacks, used for logging */ declare const fetchCallbacks: AxiosCallbacks; export { axiosConfig, fetchCallbacks };