import React from "react"; type ReceiptSubmissionCardProps = { terreiroId?: string | null; competenceMonth?: string; backendPeriodMonth?: string; hasPaidMonthlyFee?: boolean; paidAmount?: string; note?: string; formattedTotalPaidThisMonth?: string; receiptFileName?: string | null; latestRequest?: { id: string; competenceMonth: string; status: "PENDING" | "APPROVED" | "REJECTED" | "CANCELLED"; rejectionReason: string | null; requestedAt: string; } | null; requestHistory?: Array<{ id: string; competenceMonth: string; status: "PENDING" | "APPROVED" | "REJECTED" | "CANCELLED"; rejectionReason: string | null; requestedAt: string; reviewedAt?: string | null; reviewedByName?: string | null; }>; localReceiptError?: string | null; localReceiptFeedback?: { severity: "success" | "error" | "info" | "warning"; message: string; } | null; receiptHint?: string; isSubmitting?: boolean; canSubmitReceipt?: boolean; paidAmountError?: string | null; onCompetenceMonthChange?: (value: string) => void; onPaidAmountChange?: (value: string) => void; onNoteChange?: (value: string) => void; onSelectReceipt?: (file: File | null) => void; onSubmitReceipt?: () => void; }; declare const ReceiptSubmissionCard: React.FC; export default ReceiptSubmissionCard;