import React from 'react'; declare type PopupProps = { children?: React.ReactNode; visible?: boolean; onClick?: () => void; onClose?: () => void; onClickOutside?: () => void; showClose?: boolean; showLine?: boolean; className?: string; }; export declare const Popup: ({ showClose, ...props }: PopupProps) => React.ReactPortal; declare type PopupGroupsProps = { children?: React.ReactNode; }; export declare const PopupGroup: (props: PopupGroupsProps) => JSX.Element; export {};