import { IModalProps } from '@/common/types'; interface Props { modal: IModalProps; name: string; id: string; onOk: () => void; } declare const openDeleteModal: (props: Props) => void; export default openDeleteModal;