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