import BaseClass from "../utils/BaseClass"; import { SkuCollection } from './Sku'; import { MarketCollection } from './Market'; import { CustomerCollection } from './Customer'; import { SingleRelationship } from "../typings/Library"; export declare class InStockSubscriptionCollection extends BaseClass { static className: string; status: string; customerEmail: string; skuCode: string; _activate: boolean; _deactivate: boolean; createdAt: Date; updatedAt: Date; reference: string; referenceOrigin: string; metadata: object; market: () => SingleRelationship; customer: () => SingleRelationship; sku: () => SingleRelationship; static define(): void; } declare const InStockSubscription: import("../typings/Library").BaseResource; export default InStockSubscription;