import { ResourceConfig, ConcreteResourceInstance, Resource } from '../resource'; import { AttachmentInstance } from './Attachments'; import { SkuInstance } from './Skus'; import { BundleInstance } from './Bundles'; import { SkuListItemInstance } from './SkuListItems'; export interface SkuListAttributes { name: string; slug: string; description: string; image_url: string; manual: boolean; sku_code_regex: string; created_at: string; updated_at: number; reference: string; reference_origin: string; } export interface SkuListRelationships { skus: SkuInstance[]; sku_list_items: SkuListItemInstance[]; bundles: BundleInstance; attachments: AttachmentInstance[]; } export declare type SkuListInstance = ConcreteResourceInstance; export declare const SkuListsConfig: ResourceConfig; export declare const SkuLists: Resource; //# sourceMappingURL=SkuLists.d.ts.map