export declare class Offer { static createFromProfileData(profile: any): Offer; static offerComparator(offer1: Offer, offer2: Offer): 0 | 1 | -1; id: string; name: string; isDefault: boolean; isExclusive: boolean; hasConference: boolean; isPrepaid: boolean; isDemo: boolean; constructor(id: string, name: string, isDefault: boolean, isExclusive: boolean, isPrepaid: boolean, hasConference: boolean, isDemo: boolean); isEnterprise(): boolean; isBusiness(): boolean; isEssential(): boolean; } //# sourceMappingURL=offer.model.d.ts.map