import { FC, CSSProperties } from 'react'; interface PitBimwinDialogProps { visible: boolean; className?: string; title?: string; center?: boolean; beforeClose?: Function; isResiz?: boolean; id?: string; children?: any; style?: CSSProperties; } declare const PitBimwinDialog: FC; export default PitBimwinDialog;