import { IModalProps } from '@/common/types'; interface Props { modal?: IModalProps; projectId?: string; issueId: string; onOk: (res: any) => void; } declare const openCreateLink: (props: Props) => void; export default openCreateLink;