import React from 'react'; import './index.scss'; interface HcDialog { visible: boolean; title?: string; left?: any; onOk: (obj?: any) => void; onClose: (obj?: any) => void; onCancel: (obj?: any) => void; width: number | string; } declare const HcDialog: React.FC; export default HcDialog;