import { type IFdtoInventoryForecast, type IFdtoPurchaseOrderForecast } from '@/api/stock-estimate'; export interface StockForecastStore { inventoryForecast: IFdtoInventoryForecast; purchaseOrderForecast: IFdtoPurchaseOrderForecast; } export declare function useStockEstimateStore(): { inventoryForecast: IFdtoInventoryForecast; purchaseOrderForecast: IFdtoPurchaseOrderForecast; readStockEstimateBalance(): Promise; readPurchaseOrder(days: number, templateId?: string): Promise; };