import { type DefaultProps } from '../config'; import { type SelectPopoutEmits, type SelectPopoutExpose, type SelectPopoutProps, type SelectPopoutSlots } from '../select-popout/common'; import { type PopoutInputSlots, type PopoutInputProps } from '../popout-input/common'; export interface SelectInputProps extends SelectPopoutProps, Omit { maxLabels?: number; mapLabel?: Record; } export declare const defaultSelectInputProps: DefaultProps; export interface SelectInputSlots extends SelectPopoutSlots, Omit { } export interface SelectInputEmits extends SelectPopoutEmits { } export interface SelectInputExpose extends SelectPopoutExpose { }