import React from 'react'; interface TimesheetDetailsButtonsProps { timesheet: any; statusSelect: number; isEmpty: boolean; isManualCreation?: boolean; } declare const TimesheetDetailsButtons: ({ timesheet, statusSelect, isEmpty, isManualCreation, }: TimesheetDetailsButtonsProps) => React.JSX.Element; export default TimesheetDetailsButtons;