import type { ElProps } from '..'; export declare const SELECT_SIZES: readonly ["sm", "md", "lg"]; export type SelectSizes = typeof SELECT_SIZES[number]; export declare const SELECT_STATES: readonly ["valid", "invalid"]; export type SelectStates = typeof SELECT_STATES[number]; export interface SelectProps extends Partial { value?: any; size?: SelectSizes; disabled?: boolean; items?: Array; placeholder?: string; state?: SelectStates; }