import React, { FC } from 'react'; export interface Props { title: string; description: string; price?: string; priceLabel?: string; linkHref: string; linkTitle: string; available: boolean; availableFromLabel?: string; enabled: boolean; enabledLabel?: string; image: string; includedInPlan: boolean; includedInPlanLabel?: string; buttonLabel: string; onBluttonClick(): void; 'data-testid'?: string; } declare const CorporateAddonCard: FC>; export default CorporateAddonCard;