import { type PopupProps as AntdMPopupProps } from 'antd-mobile';
import { type UseModalEnhancedProps } from '../hooks';
export type PopupProps = Omit<AntdMPopupProps, 'onClick'> & UseModalEnhancedProps & {
    popupClick?: AntdMPopupProps['onClick'];
};
declare function Popup(props: PopupProps): import("react/jsx-runtime").JSX.Element;
export default Popup;
