declare namespace API { type DictType = { id?: string; name: string; }; type DeleteDictParams = { id: string; }; type DictValueType = { id?: string; dictTypeId?: string; dictValue?: string; enable?: number; pendingStatus?: boolean; typeId?: number; }; type DeleteDictValueParams = { id: string; }; type DeleteBatchDictValueParams = string[]; }