import { IContext, IResponse } from '../../types'; import { IGenAiOpenAIKey } from '..'; export interface IGetOpenAIKeyApiResponse { openai_key: IGenAiOpenAIKey; } export interface IGetOpenAIKeyApiRequest { key_uuid: string; } export type GetOpenAIKeyResponse = IResponse; export declare const getOpenAIKey: ({ httpClient }: IContext) => ({ key_uuid }: IGetOpenAIKeyApiRequest) => Promise>;