import type { AxiosInstance, AxiosRequestConfig, AxiosResponse } from 'axios'; import type { CreateServiceParams, ListServicesParams, LocateServiceParams, UpdateService2Params, UpdateServiceParams, WebitelCasesInputCreateService, WebitelCasesInputService, WebitelCasesLocateServiceResponse, WebitelCasesService, WebitelCasesServiceList } from '../_models'; export declare const // --- title start getServices: (axiosInstance?: AxiosInstance) => { listServices: (params?: ListServicesParams, options?: AxiosRequestConfig) => Promise>; createService: (webitelCasesInputCreateService: WebitelCasesInputCreateService, params?: CreateServiceParams, options?: AxiosRequestConfig) => Promise>; deleteService: (id: string[], options?: AxiosRequestConfig) => Promise>; locateService: (id: string, params?: LocateServiceParams, options?: AxiosRequestConfig) => Promise>; updateService2: (id: string, webitelCasesInputService: WebitelCasesInputService, params?: UpdateService2Params, options?: AxiosRequestConfig) => Promise>; updateService: (id: string, webitelCasesInputService: WebitelCasesInputService, params?: UpdateServiceParams, options?: AxiosRequestConfig) => Promise>; }; export type ListServicesResult = AxiosResponse; export type CreateServiceResult = AxiosResponse; export type DeleteServiceResult = AxiosResponse; export type LocateServiceResult = AxiosResponse; export type UpdateService2Result = AxiosResponse; export type UpdateServiceResult = AxiosResponse;