import { OnChanges, OnInit, SimpleChanges } from '@angular/core'; import { DataService } from '@ishop/admin-ui/core'; import { Observable } from 'rxjs'; export declare class VariantPriceDetailComponent implements OnInit, OnChanges { private dataService; priceIncludesTax: boolean; price: number; currencyCode: string; taxCategoryId: string; grossPrice$: Observable; taxRate$: Observable; private priceChange$; private taxCategoryIdChange$; constructor(dataService: DataService); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; }