UNPKG

554 BTypeScriptView Raw
1import { EventEmitter } from '@angular/core';
2import { Pricing } from '../pricing';
3export declare class VaHeaderContainerComponent {
4 iconUrl: string;
5 title: string;
6 tagline: string;
7 chipLabels: string[];
8 pricing: Pricing;
9 pricingLabel: string;
10 actionEnabled: boolean;
11 actionLabel: string;
12 showAction: boolean;
13 showPricing: boolean;
14 prerequisiteLabel: string;
15 prerequisiteSelected: EventEmitter<{}>;
16 actionSelected: EventEmitter<{}>;
17 onActionSelected(): void;
18 onPrerequisiteSelected(): void;
19}