import React from 'react'; import './index.less'; export declare type SendModalValues = { sendSms: boolean; sendEmail: boolean; phone: { code: string; phone: string; }; email: string; }; interface SendModalProps { open: boolean; refreshKey: string; onCancel: () => void; onOk: (values: SendModalValues) => void; defaultValues?: { email?: string; phone?: { code?: string; phone?: string; }; }; onValuesChange?: (values: any) => void; } declare const SendModal: React.FC; export default SendModal;