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