export declare abstract class PriceManagerBase { protected productCategoryEnum: TProductCategory; constructor(productCategoryEnum: TProductCategory); abstract getLivePrice(productCategory: TProductCategory): Promise; }