import React from 'react'; interface TimesheetCardProps { statusSelect: number; startDate: string; endDate: string; company: string; totalDuration: number; durationUnit: string; employeeName?: string; style?: any; onPress: () => void; } declare const TimesheetCard: ({ statusSelect, startDate, endDate, company, totalDuration, durationUnit, employeeName, style, onPress, }: TimesheetCardProps) => React.JSX.Element; export default TimesheetCard;