import React from 'react'; interface TimesheetRefusalPopupProps { isOpen: boolean; timesheet?: any; onCancel: () => void; } declare const TimesheetRefusalPopup: ({ isOpen, timesheet, onCancel, }: TimesheetRefusalPopupProps) => React.JSX.Element; export default TimesheetRefusalPopup;