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