import React from 'react'; interface ExpenseCardProps { statusSelect: number; expenseId: number; expenseSeq: string; onPress: () => void; onValidate: () => void; onSend: () => void; periodeCode?: string; inTaxTotal?: string; companyInTaxTotal?: string; currency?: any; employeeManagerId?: number; employeeName?: string; } declare const ExpenseCard: ({ onPress, onValidate, onSend, statusSelect, expenseId, expenseSeq, periodeCode, inTaxTotal, companyInTaxTotal, currency, employeeManagerId, employeeName, }: ExpenseCardProps) => React.JSX.Element; export default ExpenseCard;