import type { LocaleProps, Option, ThemeProps } from 'jamis-core'; import type { UserSelectProps } from './UserSelect.types'; export interface UserSelectTop extends UserSelectProps { title: string; deferApi?: string; searchApi?: string; searchable?: boolean; searchParam?: PlainObject; searchTerm?: string; } export interface UserTabSelectProps extends ThemeProps, LocaleProps { tabOptions?: Array; multiple?: boolean; placeholder?: string; valueField: string; labelField: string; selection?: Array