import { selectProps, selectEmits } from './props'; import type { ExternalParam, IDefineProps, IDefineEmits } from '../types/index'; export interface SelectConfig { value?: string; label?: string; name?: string; disabled?: string; children?: string; } export type SelectDataItem = Record; export type ISelectProps = IDefineProps; export type ISelectEmits = IDefineEmits;