import { Tool } from '@modelcontextprotocol/sdk/types.js'; import { SAPClient } from '../sap/client.js'; export declare const masterDataTools: Tool[]; export declare class MasterDataToolHandler { private sapClient; constructor(sapClient: SAPClient); handleGetBusinessPartners(args: unknown): Promise; handleGetBusinessPartner(args: unknown): Promise; handleCreateBusinessPartner(args: unknown): Promise; handleUpdateBusinessPartner(args: unknown): Promise; handleGetItems(args: unknown): Promise; handleGetItem(args: unknown): Promise; handleGetItemGroups(args: unknown): Promise; handleCreateItem(args: unknown): Promise; handleGetWarehouses(args: unknown): Promise; handleGetWarehouse(args: unknown): Promise; handleGetPriceLists(args: unknown): Promise; handleGetPriceList(args: unknown): Promise; handleGetItemStock(args: unknown): Promise; handleGetItemStockAll(args: unknown): Promise; handleGetItemPrice(args: unknown): Promise; handleGetItemPricesAll(args: unknown): Promise; }