///
import { PopupProps } from 'antd-mobile';
interface ShowPopupProps extends Omit {
/** 渲染内容 */
content: React.ReactNode;
/** 指定弹出位置 */
position?: PopupProps['position'] | 'center';
}
export declare const showHistoryPopup: (props: ShowPopupProps) => {
close: () => void;
};
export {};