declare namespace API { type DictType = { id?: string; name: string; }; type DeleteDictParams = { id: string; }; type DeleteBatchDictParams = string[]; type DictValueType = { id?: string; fieldTypeId: string; fieldValue: string; enable: string; pendingStatus?: boolean; }; type DeleteDictValueParams = { id: string; }; type DeleteBatchDictValueParams = string[]; }