import BaseClass from "../utils/BaseClass"; import { MultiRelationship } from "../typings/Library"; import { CustomerGroupCollection } from './CustomerGroup'; import { PriceListCollection } from './PriceList'; import { InventoryModelCollection } from './InventoryModel'; export declare class MarketCollection extends BaseClass { static className: string; number: number; name: string; facebookPixelId: string; id: string; createdAt: Date; updatedAt: Date; reference: string; referenceOrigin: string; metadata: object; customerGroup: () => MultiRelationship; priceList: () => MultiRelationship; inventoryModel: () => MultiRelationship; static define(): void; } declare const Market: import("../typings/Library").BaseResource; export default Market;