import { type WithCompanyItemRequestBuilder } from './item/index.js'; import { type BaseRequestBuilder, type Guid, type KeysToExcludeForNavigationMetadata, type NavigationMetadata } from '@microsoft/kiota-abstractions'; /** * Builds and executes requests for operations under /v2/tax/item/{itemId} */ export interface WithItemItemRequestBuilder extends BaseRequestBuilder { /** * Gets an item from the JtlErpApi.v2.tax.Item_Escaped.item.item collection * @param companyId The id of the Company to return. * @returns {WithCompanyItemRequestBuilder} */ byCompanyId(companyId: Guid): WithCompanyItemRequestBuilder; } /** * Uri template for the request builder. */ export declare const WithItemItemRequestBuilderUriTemplate = "{+baseurl}/v2/tax/item/{itemId}"; /** * Metadata for all the navigation properties in the request builder. */ export declare const WithItemItemRequestBuilderNavigationMetadata: Record, NavigationMetadata>; //# sourceMappingURL=index.d.ts.map