import type { FC } from "react"; type TDuplicateWorkItemModalProps = { workItemId: string; onClose: () => void; isOpen: boolean; workspaceSlug: string; projectId: string; }; export const DuplicateWorkItemModal: FC = () => <>;