import type { HttpClient } from '@sisense/sdk-rest-client'; /** * Returns the authenticated HTTP client from SisenseContext. * * Use this to make authorized REST API calls from components wrapped inside * `SisenseContextProvider` when domain-specific hooks are not available. * * @returns HttpClient when the app is initialized, undefined otherwise * * @sisenseInternal */ export declare const useHttpClient: () => HttpClient | undefined;