import { EventEmitter } from '@angular/core'; import { Pricing } from '../pricing'; import { Salesperson } from './salesperson'; export declare class VaSalespersonDetailsComponent { salesperson: Salesperson; packagePricing: Pricing; brandName: string; showGetItNow: boolean; getItNow: EventEmitter<{}>; onGetItNowSelected(): void; readonly iconUrl: string; readonly name: string; readonly title: string; readonly email: string; readonly cityAndState: string; }