import React from 'react'; import type { DeleteWorkAreaCounts, I18nText, WorkAreaItem } from '../../types'; import './index.less'; interface DeleteWorkAreaModalProps { open: boolean; loading: boolean; submitting: boolean; record?: WorkAreaItem; counts: DeleteWorkAreaCounts; translation: (val?: I18nText) => string; getText: (key: string) => string; onClose: () => void; onConfirm: () => void; } declare const DeleteWorkAreaModal: React.FC; export default DeleteWorkAreaModal;