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; }; type DeleteDictValueParams = { id: string; }; type DeleteBatchDictValueParams = string[]; }