import { Options } from '../types/base.js';
import { ItemData, ItemResponse } from '../types/item.js';
/**
 * 商品接口 Service 3.1 ✅
 * 通过该接口发送商品信息，该接口必须先于入库单接口、出库单接口调用。
 */
export declare class ItemService {
    private options;
    constructor(options: Options);
    /**
     * 发送商品信息
     */
    sendItems(data: ItemData): Promise<ItemResponse>;
}
