import type { AxiosInstance, AxiosRequestConfig, AxiosResponse } from 'axios'; import type { CreateLinkParams, ListLinksParams, LocateLinkParams, UpdateLink2Body, UpdateLink2Params, UpdateLinkBody, UpdateLinkParams, WebitelCasesCaseLink, WebitelCasesCaseLinkList } from '../_models'; export declare const // --- title start getCaseLinks: (axiosInstance?: AxiosInstance) => { listLinks: (caseEtag: string, params?: ListLinksParams, options?: AxiosRequestConfig) => Promise>; createLink: (caseEtag: string, params?: CreateLinkParams, options?: AxiosRequestConfig) => Promise>; deleteLink: (caseEtag: string, etag: string, options?: AxiosRequestConfig) => Promise>; locateLink: (caseEtag: string, etag: string, params?: LocateLinkParams, options?: AxiosRequestConfig) => Promise>; updateLink2: (caseEtag: string, updateLink2Body: UpdateLink2Body, params?: UpdateLink2Params, options?: AxiosRequestConfig) => Promise>; updateLink: (caseEtag: string, updateLinkBody: UpdateLinkBody, params?: UpdateLinkParams, options?: AxiosRequestConfig) => Promise>; }; export type ListLinksResult = AxiosResponse; export type CreateLinkResult = AxiosResponse; export type DeleteLinkResult = AxiosResponse; export type LocateLinkResult = AxiosResponse; export type UpdateLink2Result = AxiosResponse; export type UpdateLinkResult = AxiosResponse;