import { HTMLAttributes, JSXElementConstructor, ReactElement } from 'react'; export interface PopUpProps { children: ReactElement>; popUpContent: ReactElement>; position?: 'top' | 'left' | 'right' | 'bottom'; } export declare const PopUp: ({ children, popUpContent, position }: PopUpProps & HTMLAttributes) => JSX.Element;