import { ResourceConfig, ConcreteResourceInstance, Resource } from '../resource'; import { AttachmentInstance } from './Attachments'; import { PriceInstance } from './Prices'; export interface PriceListAttributes { name: string; currency_code: string; tax_included: boolean; } export interface PriceListRelationships { prices: PriceInstance[]; attachments: AttachmentInstance[]; } export declare type PriceListInstance = ConcreteResourceInstance; export declare const PriceListsConfig: ResourceConfig; export declare const PriceLists: Resource; //# sourceMappingURL=PriceLists.d.ts.map