import React from 'react';
export declare type ModalProps = {
    isOpen?: boolean;
    text: string;
    motionProps?: {
        onAnimationComplete?: (args: any) => void;
    };
    onClose?: (args: any) => void;
};
declare const Modal: React.FC<ModalProps>;
export default Modal;
