import React from "react"; interface PopupProps { className?: string; children?: any; title?: string; iconClass?: string; show?: boolean; onClose?: (event: any) => void; toggle?: any; closeBtn?: boolean; } export declare const Popup: React.FC; export {};