import { ExtractPropTypes, PropType } from 'vue'; import { ButtonSize } from '../../button'; export declare const selectProps: { readonly modelValue: { readonly type: any; readonly default: ""; }; readonly options: { readonly type: ArrayConstructor; readonly default: readonly []; }; readonly size: { readonly type: PropType; readonly default: "default"; }; readonly disabled: BooleanConstructor; readonly multiple: BooleanConstructor; readonly placeholder: StringConstructor; readonly filterable: BooleanConstructor; readonly clearable: BooleanConstructor; readonly collapse: BooleanConstructor; readonly removeTag: FunctionConstructor; }; export type SelectProps = ExtractPropTypes;