import * as React from 'react'; import { ImperativeHandler } from '../utils/dom'; import { PopupProps } from './Popup'; export interface PopupShowProps extends Omit { content?: React.ReactNode; } export declare type PopupShowHandler = Pick; export declare const show: (props: PopupShowProps) => PopupShowHandler; export declare const clear: () => void;