import React from 'react'; interface TimesheetCreationAlertProps { isOpen: boolean; onCancel: () => void; } declare const TimesheetCreationAlert: ({ isOpen, onCancel, }: TimesheetCreationAlertProps) => React.JSX.Element; export default TimesheetCreationAlert;