import { ForwardRefExoticComponent } from "react"; import { PopupProps } from "./popup"; import PopupBackdrop from "./popup-backdrop"; import PopupClose from "./popup-close"; export type { PopupPlacement } from "./popup.shared"; export type { PopupBackdropProps } from "./popup-backdrop"; export { usePopupBackdrop } from "./popup-backdrop"; export type { PopupCloseProps } from "./popup-close"; interface PopupInterface extends ForwardRefExoticComponent { (props: PopupProps): JSX.Element; Backdrop: typeof PopupBackdrop; Close: typeof PopupClose; } declare const Popup: PopupInterface; export default Popup;