import { EventEmitter } from '@angular/core';
import { Pricing } from '../pricing';
export declare class VaHeaderContainerComponent {
    iconUrl: string;
    title: string;
    tagline: string;
    prerequisite: string;
    chipLabels: string[];
    pricing: Pricing;
    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;
}
