import { FC, ReactNode } from 'react'; export interface ModalRedesignProps { isOpen?: boolean; error?: string; children?: ReactNode; actions?: ReactNode; title?: string; withAnimation: boolean; onRequestClose: () => void; } declare const ModalRedesign: FC; export default ModalRedesign;