/// import { EurekaDraft } from '../../../../@Types/Draft/Draft'; import { Entity } from '../../../../@Types/Entity'; interface EntityValueDialogProps { type: 'WARNING' | 'INFO'; message: EurekaDraft; entityValue: any; entity: Entity; handleClose: () => void; } declare function MaterialEntityValueDialog({ type, entity, message, entityValue, handleClose, }: EntityValueDialogProps): JSX.Element; export default MaterialEntityValueDialog;