import { ResourceConfig, ConcreteResourceInstance, Resource } from '../resource'; import { AttachmentInstance } from './Attachments'; import { StockItemInstance } from './StockItems'; export interface StockLocationAttributes { number: number; name: string; label_format: 'PDF' | 'ZPL' | 'EPL2' | 'PNG'; suppress_etd: boolean; } export interface StockLocationRelationships { inventory_stock_locations?: any[]; inventory_return_locations?: any[]; stock_items?: StockItemInstance[]; stock_transfers?: any[]; attachments?: AttachmentInstance[]; } export declare type StockLocationInstance = ConcreteResourceInstance; export declare const StockLocationConfig: ResourceConfig; export declare const StockLocations: Resource; //# sourceMappingURL=StockLocations.d.ts.map