export interface SelectItem { id: number; label?: string; value: string; disabled?: boolean; } export interface AbSettingProps { label: string; type: 'input' | 'switch' | 'select' | 'dynamic-tags'; css?: string; prop?: any; bottomLine?: boolean; } export type SettingItem = AbSettingProps & { configKey: keyof T; };