import { EventEmitter } from '@angular/core'; import { Pricing } from '../pricing'; export declare class VaHeaderContainerComponent { iconUrl: string; title: string; tagline: string; chipLabels: string[]; pricing: Pricing; pricingLabel: string; actionEnabled: boolean; actionLabel: string; showAction: boolean; showPricing: boolean; prerequisiteLabel: string; prerequisiteSelected: EventEmitter<{}>; actionSelected: EventEmitter<{}>; onActionSelected(): void; onPrerequisiteSelected(): void; }