import React, { HTMLAttributes, RefAttributes } from 'react'; export interface UiPopupHandlers { open: () => void; close: () => void; toggle: () => void; isOpen: boolean; } interface PopupProps { } export declare const UiPopup: React.ForwardRefExoticComponent & RefAttributes>; export {};