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