import { AxiosRequestConfig } from 'axios'; export type FetchOptions = RequestInit & { clearContentType?: boolean; }; export declare const request: (url: string, options?: AxiosRequestConfig, shouldParseJSON?: boolean) => Promise; export declare const authedRequest: (apiBasePath: string, endpoint: string, token: string, options?: AxiosRequestConfig, shouldParseJSON?: boolean) => Promise; export declare const publicRequest: (apiBasePath: string, endpoint: string, options?: AxiosRequestConfig, shouldParseJSON?: boolean) => Promise; //# sourceMappingURL=utils.d.ts.map