import { IModalProps, Issue } from '@/common/types'; interface Props { issue: Issue; modal?: IModalProps; projectId?: string; onOk: (issue: Issue) => void; } declare const openRelateIssueModal: (props: Props) => void; export default openRelateIssueModal;