import { FunctionComponent } from 'react';
import { ElementProps } from '../../pro/es/core/ViewComponent';
export interface PopupInnerProps extends ElementProps {
    innerRef: (node: any) => void;
    onResize: (width: number, height: number, target: Element | null) => void;
}
declare const PopupInner: FunctionComponent<PopupInnerProps>;
export default PopupInner;
