import { AxiosInstance } from 'axios'; import { PatchItemRequest } from '../../../../src/dto/items'; import { KeezLogger } from '../../../../src/helpers/keezLogger'; interface PatchItemParams { readonly baseDomain: string; readonly appId: string; readonly appClientId: string; readonly bearerToken: string; readonly itemId: string; readonly item: PatchItemRequest; readonly httpClient?: AxiosInstance; readonly logger?: KeezLogger; } export declare function apiPatchItem(params: PatchItemParams): Promise; export {};