import { AxiosInstance } from 'axios'; export declare const setAxiosHeader: (key: string, value: string | number) => void; interface IPublicRequest extends AxiosInstance { setBaseUrl: (baseUrl: string) => void; setGuestToken: (guestToken: string) => void; } export declare const publicRequest: IPublicRequest; export declare const setBaseUrl: (baseUrl: string) => void; export {};