import React from 'react';
interface Props {
    children: React.ReactNode;
    visible: boolean;
    onClose: () => void;
    title?: string;
}
declare const NLModal: ({ visible, onClose, children, title }: Props) => import("react/jsx-runtime").JSX.Element;
export default NLModal;
//# sourceMappingURL=Modal.d.ts.map