rc-trigger
Version:
base abstract trigger component for react
9 lines (8 loc) • 395 B
TypeScript
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;