import React from 'react'; import { NativeProps } from '../_util/withNativeProps'; import { TdPopupProps } from './type'; export interface PopupProps extends TdPopupProps, NativeProps { } declare const Popup: React.FC; export default Popup;