/** * Copyright (c) 2023-present Plane Software, Inc. and contributors * SPDX-License-Identifier: AGPL-3.0-only * See the LICENSE file for details. */ import React from "react"; import type { TIssue } from "@plane/types"; export interface EpicModalProps { data?: Partial; isOpen: boolean; onClose: () => void; beforeFormSubmit?: () => Promise; onSubmit?: (res: TIssue) => Promise; fetchIssueDetails?: boolean; primaryButtonText?: { default: string; loading: string; }; isProjectSelectionDisabled?: boolean; } export function CreateUpdateEpicModal(_props: EpicModalProps) { return <>; }