import React from 'react'; export interface LegacyModalProps { open?: boolean; text: string; onExited?: (args: any) => void; onClose?: (args: any) => void; } declare const LegacyModal: React.FC; export default LegacyModal;