import React from "react"; declare type Props = { opener?: React.ReactElement<{ onClick: () => void; }>; className?: string; onClose?: () => void; }; export declare const Modal: React.FC; export {};