import type { ProductStock, UseStockOptions } from "./types"; export declare function useStock({ productIds, locationIds, enabled, }: UseStockOptions): { productStock: Record; loading: boolean; error: Error | null; refetch: () => void; }; export declare function useProductStock(productId: string, locationIds?: string[], enabled?: boolean): { stock: ProductStock; loading: boolean; error: Error | null; refetch: () => void; };