import { FC, PropsWithChildren } from "react"; export declare type PopupPosition = "top" | "bottom" | "left" | "right"; export interface PopupProps extends PropsWithChildren<{}> { visible: boolean; position?: PopupPosition; className?: string; onClose?: () => void; } declare const Popup: FC; export default Popup;