import { ResourceConfig, ConcreteResourceInstance, Resource } from '../resource'; import { AttachmentInstance } from './Attachments'; import { PriceListInstance } from './PriceLists'; import { SkuInstance } from './Skus'; export interface PriceAttributes { currency_code: string; sku_code: string; amount_cents: number; amount_float: number; formatted_amount: string; compare_at_amount_cents: number; compare_at_amount_float: number; formatted_compare_at_amount: string; } export interface PriceRelationships { price_list: PriceListInstance; sku: SkuInstance; attachments: AttachmentInstance[]; } export declare type PriceInstance = ConcreteResourceInstance; export declare const PricesConfig: ResourceConfig; export declare const Prices: Resource; //# sourceMappingURL=Prices.d.ts.map