import React from 'react'; interface TimesheetHeaderProps { timesheet: any; statusSelect: number; } declare const TimesheetHeader: ({ timesheet, statusSelect }: TimesheetHeaderProps) => React.JSX.Element; export default TimesheetHeader;