import { AxiosResponse } from 'axios'; import { BorrowingRequestLoadingFilters } from '../types/filterOptions.type'; import { BorrowingTransactionRequestReponse, LinkedAssetFamilyResponse } from '../types/response.type'; declare const AssetServices: { getAssetByIdOptions: (params: BorrowingRequestLoadingFilters & { _id?: string; }) => Promise; getAsset: (params: { tag?: string; }) => Promise; getAssetAvailable: (params: Record) => Promise>; getAssetFamily: (ids: string) => Promise>; }; export default AssetServices;