UNPKG

395 BTypeScriptView Raw
1import * as React from 'react';
2import type { PopupInnerProps, PopupInnerRef } from './PopupInner';
3import type { MobileConfig } from '../interface';
4interface MobilePopupInnerProps extends PopupInnerProps {
5 mobile?: MobileConfig;
6}
7declare const MobilePopupInner: React.ForwardRefExoticComponent<MobilePopupInnerProps & React.RefAttributes<PopupInnerRef>>;
8export default MobilePopupInner;