import { ResourceConfig, ConcreteResourceInstance, Resource } from '../resource'; import { StockLocationInstance } from './StockLocations'; import { SkuInstance } from './Skus'; import { AttachmentInstance } from './Attachments'; export interface StockItemAttributes { sku_code: string; quantity: number; } export interface StockItemRelationships { stock_location?: StockLocationInstance; sku?: SkuInstance; attachments?: AttachmentInstance[]; } export declare type StockItemInstance = ConcreteResourceInstance; export declare const StockItemConfig: ResourceConfig; export declare const StockItems: Resource; //# sourceMappingURL=StockItems.d.ts.map