import React from 'react'; export interface PlanTabProps { active: boolean; onClick: () => void; label: string; paymentCount: number; price: number; currency: string; per: string; cy?: { planTab?: string; month?: string; currency?: string; }; } declare const PlanTab: React.FC; export default PlanTab;