import { HttpClient } from '@sisense/sdk-rest-client'; import { default as OpenAI } from 'openai'; /** * Factory function to create an OpenAI client with custom configuration * @param baseURL - The base URL for the OpenAI API endpoint * @param fetchFn - Custom fetch function (e.g., with authentication headers) * @returns Configured OpenAI client instance */ export declare function createOpenAIClientHelper(baseURL: string, fetchFn: typeof fetch): OpenAI; export declare function createOpenAIClient(httpClient: HttpClient): OpenAI; //# sourceMappingURL=openai-client.d.ts.map