/** * * @param {string} baseUrl * @param {{ * getOptions?: (op: string, options: any) => Promise, * watch?: 'sse' | 'none' | 'hang', * connInfoPath?: string, * } | undefined} options * @returns {(store: any) => void} */ declare const httpClient: (baseUrl: any, { getOptions, watch, connInfoPath, }?: { getOptions?: (..._: any[]) => Promise; watch?: string; connInfoPath?: string; }) => (store: any) => void; export default httpClient;