import React from "react"; import type { PaymentStatus } from "../MediumFinancialTransparencyPage.types"; export interface PaymentStatusBannerProps { /** Payment status data */ paymentStatus?: PaymentStatus; /** Formatted monthly fee string */ formattedMonthlyFee?: string; /** Current period month name */ periodMonth?: string; /** Loading state */ isLoading?: boolean; /** Handler to navigate to payment */ onPayNow?: () => void; } declare const PaymentStatusBanner: React.FC; export default PaymentStatusBanner;