declare namespace GROUP_CHAT_CREATE { interface corpUsersProps { corpUserId: string, name: string, corpName: string, corpId: string, } interface SettingsProps { corpUsers?: corpUsersProps[]; // 企微号列表 bizType?: string; // 业务类型 platform?: string; // 书城 channel?: string; // 渠道 templateProductId?: string; // 适用产品 strategyDTO?: { [x: string]: any }; groupUsersDTO?: { [x: string]: any }; } interface DispatchGroupChatCreate { settings: SettingsProps setSettings: React.Dispatch> onPreviewReset: () => void } interface FoundationProps extends TASK_CREATE.DefaultProps, TASK_CREATE.DefaultChangeProps { value?: { [x: string]: any }; } interface AddGroupObjectProps { value?: { [x: string]: any }; onChange?: (value: any) => void; } interface AddGroupObjectModalProps { value?: { [x: string]: any }; onChange?: (value: any) => void; visible?: boolean; onClose?: () => void; } }