import * as React from 'react';
import type { PopupInnerProps, PopupInnerRef } from './PopupInner';
import type { MobileConfig } from '../interface';
interface MobilePopupInnerProps extends PopupInnerProps {
    mobile?: MobileConfig;
}
declare const MobilePopupInner: React.ForwardRefExoticComponent<MobilePopupInnerProps & React.RefAttributes<PopupInnerRef>>;
export default MobilePopupInner;
