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