export declare enum AnalyticsPriceFields { COLUMN_ARROW_BUY_PRICE = "arrowBuyPrice", COLUMN_RESELLER_BUY_PRICE = "resellerBuyPrice", COLUMN_END_CUSTOMER_BUY_PRICE = "endCustomerBuyPrice", COLUMN_LIST_BUY_PRICE = "listBuyPrice", COLUMN_CURRENCY = "currency" } export declare type PriceType = { [AnalyticsPriceFields.COLUMN_ARROW_BUY_PRICE]: number; [AnalyticsPriceFields.COLUMN_RESELLER_BUY_PRICE]: number; [AnalyticsPriceFields.COLUMN_END_CUSTOMER_BUY_PRICE]: number; [AnalyticsPriceFields.COLUMN_LIST_BUY_PRICE]: number; [AnalyticsPriceFields.COLUMN_CURRENCY]: string; }; export declare class Price { #private; constructor(priceInput: PriceType); get arrowBuyPrice(): number; get resellerBuyPrice(): number; get endCustomerBuyPrice(): number; get listBuyPrice(): number; get currency(): string; toJSON(): PriceType; }