import { MouseEvent, ReactNode } from 'react'; export declare const showPopup: (e: MouseEvent) => void; export declare const hidePopup: (e: MouseEvent) => void; declare type CardPopupProps = { text: ReactNode; }; declare const CardPopup: ({ text }: CardPopupProps) => JSX.Element; export default CardPopup;