import { FunctionComponent } from 'react';
import { ElementProps } from '../../pro/lib/core/ViewComponent';
export interface PopupInnerProps extends ElementProps {
    innerRef: (node: any) => void;
}
declare const PopupInner: FunctionComponent<PopupInnerProps>;
export default PopupInner;
