import { FC } from 'react'; export interface FeePenaltyModalProps { isOpen?: boolean; isLoading?: boolean; handleOnAccept: (reason: any) => void; handleOnDecline: () => void; error?: string; title?: string; warningText?: string; feeText?: string; reasonLabel?: string; acceptLabel?: string; declineLabel?: string; } declare const PenaltyFeeModal: FC; export default PenaltyFeeModal;