export type HttpOptions = {
    signal?: AbortSignal;
    useCache?: boolean;
};
export declare class HttpModule {
    private readonly axiosInstance;
    private readonly cacheInterceptor;
    constructor();
    get<T = any>(url: string, opts?: HttpOptions): Promise<T>;
}
