import type { AxiosInstance, AxiosRequestConfig, AxiosResponse } from 'axios'; import type { CreateFeedbackParams, EngineFeedback, GetFeedbackParams } from '../_models'; export declare const // --- title start getFeedbackService: (axiosInstance?: AxiosInstance) => { getFeedback: (params?: GetFeedbackParams, options?: AxiosRequestConfig) => Promise>; createFeedback: (params?: CreateFeedbackParams, options?: AxiosRequestConfig) => Promise>; }; export type GetFeedbackResult = AxiosResponse; export type CreateFeedbackResult = AxiosResponse;