import { BaseElement } from '../../lib/base-element'; import { GapMedicalPolicyAttributes, SeasonInterruptionPolicyAttributes } from '../../lib/model/policy-attributes'; import { QuoteElement } from '../../lib/quote-element'; import { CSSResultGroup } from "lit"; /** * @fires offer-state-change */ export declare class CombinationOfferOption extends BaseElement { static styles: CSSResultGroup; customerFirstName?: string; customerLastName?: string; customerEmailAddress?: string; customerStreetAddress?: string; customerState?: string; customerCity?: string; customerPostalCode?: string; customerCountry?: "US" | "CA"; eventStartDate?: string; eventEndDate?: string; insurableAmount?: number; activity?: string; participantFirstName?: string; participantLastName?: string; participantStreetAddress?: string; participantState?: string; participantBirthDate?: string; orgName?: string; orgContactEmail?: string; orgContactFirstName?: string; orgContactLastName?: string; orgContactPhone?: string; orgWebsite?: string; orgCity?: string; orgState?: string; orgPostalCode?: string; orgCountry?: string; orgPaymentPlan?: boolean; orgRegistrationSessionName?: string; coverageContextDescription?: string; _seasonInterruptionElement: QuoteElement; _gapMedicalElement: QuoteElement; _offerId: string; _seasonInterruptionRef: HTMLElement; _gapMedicalRef: HTMLElement; protected firstUpdated(): void; render(): import("lit-html").TemplateResult<1>; }