tdesign-react
Version:
TDesign Component for React
9 lines (8 loc) • 334 B
TypeScript
import React from 'react';
import type { PopconfirmProps } from './Popconfirm';
import type { PopconfirmVisibleChangeContext } from './type';
interface PopcontentProps {
onClose?: (context: PopconfirmVisibleChangeContext) => any;
}
declare const Popcontent: React.FC<PopcontentProps & PopconfirmProps>;
export default Popcontent;