UNPKG

tdesign-react

Version:
9 lines (8 loc) 345 B
import React from 'react'; import { TdDialogProps, DialogInstance } from './type'; import { StyledProps } from '../common'; export interface DialogProps extends TdDialogProps, StyledProps { isPlugin?: boolean; } declare const Dialog: React.ForwardRefExoticComponent<DialogProps & React.RefAttributes<DialogInstance>>; export default Dialog;