import { EventEmitter } from '@angular/core'; import { Pricing } from '../pricing'; import { BilledProduct, BillingModel } from '@vendasta/core'; export declare class VaHeaderContainerComponent { iconUrl: string; title: string; tagline: string; prerequisite: string; chipLabels: string[]; pricing: Pricing; billedProduct: BilledProduct; loaded: boolean; hasVerifiedContract: boolean; pricingLabel: string; pricingActionLabel: string; pricingActionEnabled: boolean; actionEnabled: boolean; actionLabel: string; showAction: boolean; showPricing: boolean; prerequisiteLabel: string; prerequisiteSelected: EventEmitter<{}>; actionSelected: EventEmitter<{}>; pricingActionSelected: EventEmitter<{}>; onActionSelected(): void; onPrerequisiteSelected(): void; showPricingModel(billedProduct: BilledProduct): boolean; getPricingModelTooltips(billingModel: BillingModel): string; }