import { FC, ReactElement } from 'react'; export declare enum Variant { Default = "default", StandOut = "stand-out" } export interface Perk { isIncluded: boolean; copy: string; label: string; } export interface Props { title: string; subtitle: string; usps: Array; upsellLabel: string; ctaButton: ReactElement; variant: Variant; price: number; priceActionLabel: string; perks: ReactElement; showLessLabel: string; showMoreLabel: string; locale: string; 'data-testid'?: string; } declare const CorporatePlanCard: FC; export default CorporatePlanCard;