import { AxiosRequestConfig } from 'axios'; export declare const buildRequestConfig: (authRequired: boolean, queryParams: object | URLSearchParams, contentType?: string, abortSignal?: AbortSignal) => AxiosRequestConfig; export declare const buildRequestUrl: (apiEndpoint: string) => string; export declare const getLocalStorageItem: (key: string) => T | null;