import { ResourceConfig, ConcreteResourceInstance, Resource } from '../resource'; import { AttachmentInstance } from './Attachments'; import { PriceListInstance } from './PriceLists'; export interface MarketAttributes { number: number; name: string; facebook_pixel_id: string; checkout_url: string; external_prices_url: string; private: boolean; } export interface MarketRelationships { merchant: any; price_list: PriceListInstance; inventory_model: any; customer_group: any; attachments: AttachmentInstance[]; } export declare type MarketInstance = ConcreteResourceInstance; export declare const MarketsConfig: ResourceConfig; export declare const Markets: Resource; //# sourceMappingURL=Markets.d.ts.map